Home | History | Annotate | Download | only in src

Lines Matching full:point2

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