Lines Matching refs:point1
553 CvPoint* point1; // array of first contour point in icvBlendContours() local
570 point1 = (CvPoint* )malloc( Ni*sizeof(CvPoint) ); in icvBlendContours()
574 cvCvtSeqToArray( contour1, point1, CV_WHOLE_SEQ ); in icvBlendContours()
578 point1[Ni-1] = point1[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()
633 CvPoint* point1; // array of first contour point in icvCalcContoursCorrespondence() local
658 point1 = (CvPoint* )malloc( Ni*sizeof(CvPoint) ); in icvCalcContoursCorrespondence()
664 cvCvtSeqToArray( contour1, point1, CV_WHOLE_SEQ ); in icvCalcContoursCorrespondence()
667 point1[Ni-1] = point1[0]; in icvCalcContoursCorrespondence()
672 edges1[i].x = (float)( point1[i+1].x - point1[i].x ); in icvCalcContoursCorrespondence()
673 edges1[i].y = (float)( point1[i+1].y - point1[i].y ); in icvCalcContoursCorrespondence()
850 free(point1); in icvCalcContoursCorrespondence()