Ask Your Question

Revision history [back]

Problem was resolve by converting the image from BGR (OpenCV) to RGB (Java) using the following:

cvCvtColor(_rgb_img, _rgb_img, CV_BGR2RGB);

Cheers!

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!