Merge pull request #368 from ilysenkov:checkSubset-fix

pull/369/merge
Andrey Kamaev 12 years ago committed by OpenCV Buildbot
commit 62b9180c50
  1. 3
      modules/calib3d/src/modelest.cpp

@ -319,6 +319,9 @@ bool CvModelEstimator2::getSubset( const CvMat* m1, const CvMat* m2,
bool CvModelEstimator2::checkSubset( const CvMat* m, int count )
{
if( count <= 2 )
return true;
int j, k, i, i0, i1;
CvPoint2D64f* ptr = (CvPoint2D64f*)m->data.ptr;

Loading…
Cancel
Save