1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

fixed typo in fitellipse err message (ticket #365)

This commit is contained in:
Vadim Pisarevsky
2011-05-02 22:37:21 +00:00
parent d02a0cab48
commit ce2edd137d
+1 -1
View File
@@ -969,7 +969,7 @@ cvFitEllipse2( const CvArr* array )
n = ptseq->total;
if( n < 5 )
CV_Error( CV_StsBadSize, "Number of points should be >= 6" );
CV_Error( CV_StsBadSize, "Number of points should be >= 5" );
#if 1
icvFitEllipse_F( ptseq, &box );
#else