I get the following error while trying to find the dominant points from the contour of an image.
OpenCV Error: Assertion failed ((icvFindDominantPointsIPAN( contour, storage, &corners, dmin*dmin, dmax*dmax, dneigh*dneigh, (float)amax )) >= 0) in cvFindDominantPoints, file /home/printerpc/Downloads/OpenCV-2.3.1/modules/legacy/src/dominants.cpp, line 392 terminate called after throwing an instance of 'cv::Exception' what(): /home/printerpc/Downloads/OpenCV-2.3.1/modules/legacy/src/dominants.cpp:392: error: (-215) (icvFindDominantPointsIPAN( contour, storage, &corners, dmin*dmin, dmax*dmax, dneigh*dneigh, (float)amax )) >= 0 in function cvFindDominantPoints
Aborted
Here is my code:
#include "cv.h"
#include "highgui.h"
#include <cvaux.h>
using namespace cv;
int main( int argc, char** argv )
{
// open and display input image
IplImage* input = cvLoadImage("easy.jpg", CV_LOAD_IMAGE_GRAYSCALE);
cvNamedWindow("Input", CV_WINDOW_AUTOSIZE);
cvShowImage("Input", input);
// create gray scale image for edge detection
IplImage* edge = cvCreateImage(cvGetSize(input), 8,1);
// create output image
IplImage* output = cvCreateImage(cvGetSize(input), 8,1);
// threshold the input image
cvThreshold(input, edge, 230,255, CV_THRESH_BINARY);
cvNamedWindow("Threshold", CV_WINDOW_AUTOSIZE);
cvShowImage("Threshold", edge);
// generate the contours
CvMemStorage* storage = cvCreateMemStorage();
CvSeq* contours = NULL;
int Nc = cvFindContours(edge, storage, &contours, sizeof(CvContour), CV_RETR_LIST);
// diplay the contours
printf("Total contours found = %d\n", Nc);
cvDrawContours(output, contours, cvScalarAll(255),cvScalarAll(255),10);
// generate the dominant points
CvMemStorage* dominantstorage = cvCreateMemStorage();
//CvSeq* dominant = cvFindDominantPoints(contours, dominantstorage, CV_DOMINANT_IPAN,5,15,5,170);
CvSeq* dominant = cvFindDominantPoints(contours, dominantstorage, CV_DOMINANT_IPAN,7, 9, 9, 150);
printf("dominant total=%d\n", dominant->total);
// display the dominant points
int i, idx;
CvPoint p;
for ( i = 0; i < dominant->total; i++)
{
idx = *(int *) cvGetSeqElem(dominant, i);
p = *(CvPoint *) cvGetSeqElem(contours, idx);
cvDrawCircle( output, p , 1, CV_RGB(255,0,0) );
printf("%d %d %d\n", idx, p.x, p.y);
}
// show output
cvNamedWindow("Output", CV_WINDOW_AUTOSIZE);
cvShowImage("Output", output);
// wait for user
cvWaitKey(0);
// garbage collection
cvReleaseImage(&input);
cvDestroyWindow("Input");
cvReleaseImage(&edge);
cvDestroyWindow("Threshold");
cvReleaseImage(&output);
cvDestroyWindow("Output");
return 0;
}
im using Opencv-2.3.1
Thanks in advance...