removed unnecessary MIN(); bug #1578
This commit is contained in:
parent
8bb422b1fc
commit
a3362864e1
@ -253,7 +253,7 @@ cvFindHomography( const CvMat* objectPoints, const CvMat* imagePoints,
|
||||
if( !tempMask.empty() )
|
||||
cvSet( tempMask, cvScalarAll(1.) );
|
||||
|
||||
CvHomographyEstimator estimator( MIN(count, 4) );
|
||||
CvHomographyEstimator estimator(4);
|
||||
if( count == 4 )
|
||||
method = 0;
|
||||
if( method == CV_LMEDS )
|
||||
|
Loading…
Reference in New Issue
Block a user