Lines Matching refs:point2
554 CvPoint* point2; // array of second contour point in icvBlendContours() local
571 point2 = (CvPoint* )malloc( Nj*sizeof(CvPoint) ); in icvBlendContours()
575 cvCvtSeqToArray( contour2, point2, CV_WHOLE_SEQ ); in icvBlendContours()
579 point2[Nj-1] = point2[0]; in icvBlendContours()
596 point_output.x = cvRound(point1[i].x + param*( point2[corr_point].x - point1[i].x )); in icvBlendContours()
597 point_output.y = cvRound(point1[i].y + param*( point2[corr_point].y - point1[i].y )); in icvBlendContours()
634 CvPoint* point2; // array of second contour point in icvCalcContoursCorrespondence() local
659 point2 = (CvPoint* )malloc( Nj*sizeof(CvPoint) ); in icvCalcContoursCorrespondence()
665 cvCvtSeqToArray( contour2, point2, CV_WHOLE_SEQ ); in icvCalcContoursCorrespondence()
668 point2[Nj-1] = point2[0]; in icvCalcContoursCorrespondence()
678 edges2[i].x = (float)( point2[i+1].x - point2[i].x ); in icvCalcContoursCorrespondence()
679 edges2[i].y = (float)( point2[i+1].y - point2[i].y ); in icvCalcContoursCorrespondence()
851 free(point2); in icvCalcContoursCorrespondence()