Dear all,
I'm having problems with the function findCirclesGrid(): it never finds the circles and it returns always false.
This is the simple piece of code:
Mat imageMat = imread("Untitled.png");
Size patternsize(4,11);
vector<Point2f> centers;
bool found = findCirclesGrid( imageMat, patternsize, Mat(centers), CALIB_CB_ASYMMETRIC_GRID );
where Untitled.png is the following image http://robocraft.ru/files/opencv/acircles_pattern.png
Any suggestions?
Thanks,
ALLL