1 | initial version |
Problem was resolve by converting the image from BGR (OpenCV) to RGB (Java) using the following:
cvCvtColor(_rgb_img, _rgb_img, CV_BGR2RGB);
Cheers!
2 | No.2 Revision |
Problem was resolve by converting the image from BGR (OpenCV) to RGB (Java) using (Java). The following was added to the following:C++ code:
cvCvtColor(_rgb_img, _rgb_img, CV_BGR2RGB);
Cheers!