Rebase and merge pull request #342 from ilysenkov/bugfix_2470

This commit is contained in:
Andrey Kamaev
2013-01-29 15:53:42 +04:00
3 changed files with 228 additions and 2 deletions

View File

@@ -45,7 +45,7 @@
#include "precomp.hpp"
class CvModelEstimator2
class CV_EXPORTS CvModelEstimator2
{
public:
CvModelEstimator2(int _modelPoints, CvSize _modelSize, int _maxBasicSolutions);

View File

@@ -351,7 +351,7 @@ bool CvModelEstimator2::checkSubset( const CvMat* m, int count )
break;
}
return i >= i1;
return i > i1;
}