Home
last modified time | relevance | path

Searched refs:numVisPoints (Results 1 – 1 of 1) sorted by relevance

/external/opencv/cvaux/src/
Dcvcorrimages.cpp268 int numVisPoints; in icvFindCorrForGivenPoints() local
269 numVisPoints = cvCountNonZero(pntStatus1); in icvFindCorrForGivenPoints()
271 if( numVisPoints > 0 ) in icvFindCorrForGivenPoints()
289 CV_CALL( cornerPoints1 = (CvPoint2D32f*)cvAlloc( sizeof(CvPoint2D32f)*numVisPoints) ); in icvFindCorrForGivenPoints()
290 CV_CALL( cornerPoints2 = (CvPoint2D32f*)cvAlloc( sizeof(CvPoint2D32f)*numVisPoints) ); in icvFindCorrForGivenPoints()
291 CV_CALL( status = (char*)cvAlloc( sizeof(char)*numVisPoints) ); in icvFindCorrForGivenPoints()
292 CV_CALL( errors = (float*)cvAlloc( 2 * sizeof(float)*numVisPoints) ); in icvFindCorrForGivenPoints()
295 for( i = 0; i < numVisPoints; i++ ) in icvFindCorrForGivenPoints()
335 numVisPoints, cvSize(10,10), 3, in icvFindCorrForGivenPoints()