I've tried findContours with 2 images. Actually, they are one. One is color image (jpg), the other is created from the color one by MS paint (exported to monochrome image - bmp):
#include "cv.h"
#include "highgui.h"
#include "iostream"
using namespace cv;
using namespace std;
char* org_file = "expmap_1.bmp"; //"expmap.jpg"; // "pic1.png";
int main( int argc, char** argv )
{
Mat src;
// the first command line parameter must be file name of binary
// (black-n-white) image
src = imread(org_file, 0); // both are read in binary form
Mat dst = Mat::zeros(src.rows, src.cols, CV_8UC3);
// src = src > 1;
namedWindow( "Source", 1 );
imshow( "Source", src );
vector<vector<Point> > contours;
vector<Vec4i> hierarchy;
findContours( src, contours, hierarchy,
CV_RETR_LIST , CV_CHAIN_APPROX_SIMPLE );
// iterate through all the top-level contours,
// draw each connected component with its own random color
cout << contours.size() << endl;
int idx = 0;
for( ; idx >= 0; idx = hierarchy[idx][0] )
{
// Scalar color( rand()&255, rand()&255, rand()&255 );
//Scalar color(255,255,255);
drawContours( dst, contours, idx, RGB(0,0,255), 1, 8, hierarchy );
}
namedWindow( "Components", 1 );
imshow( "Components", dst );
waitKey(0);
}
the command works with monochrome image giving correct result, but the other returns only 1 contour which is the image frame.
is there any difference between 2 cases?
Pictures that I used: ** Color one: http://imageshack.us/photo/my-images/440/picture73q.jpg/
** Bitmap one: http://imageshack.us/photo/my-images/16/picture73l.png/
You can see that they are the same, just different in type (color/monochrome) which I've also converted in OpenCV code.
I've come around and is still stuck at this
PS: Anyone helps me to show the upload images right in the post? so that helpers do not have to click to see
