Home | History | Annotate | Download | only in src

Lines Matching defs:point1

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