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

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