Home | History | Annotate | Download | only in test

Lines Matching defs:points1

206     CvSeq* points1;
219 points1 = 0;
246 points1 = 0;
353 points1 = cvCreateSeq( point_type, sizeof(CvSeq), CV_ELEM_SIZE(point_type), storage );
354 cvSeqPushMulti( points1, 0, size );
355 points = points1;
389 if( points1 )
391 points2 = cvCreateMat( 1, points1->total, CV_SEQ_ELTYPE(points1) );
392 cvCvtSeqToArray( points1, points2->data.ptr );
486 int sz = points1 ? points1->total : points2->cols + points2->rows - 1;
487 int point_type = points1 ? CV_SEQ_ELTYPE(points1) : CV_MAT_TYPE(points2->type);
550 if( points1 )
551 ptseq = points1;
1056 if( points1 )
1058 points1->flags |= CV_SEQ_KIND_CURVE;
1060 points1->flags |= CV_SEQ_FLAG_CLOSED;
1061 total = points1->total;
1081 result = cvArcLength( points, slice, points1 ? -1 : is_closed );
1084 !points1 ? is_closed != 0 : (points1->flags & CV_SEQ_FLAG_CLOSED) != 0);
1751 if( points1 )
1752 points1->flags = CV_SEQ_MAGIC_VAL + CV_SEQ_POLYGON;