Home | History | Annotate | Download | only in src

Lines Matching full:point_seq

4100             CvPoint2DSeq* point_seq = (CvPoint2DSeq*)seq;
4103 cvWriteInt( fs, "x", point_seq->rect.x );
4104 cvWriteInt( fs, "y", point_seq->rect.y );
4105 cvWriteInt( fs, "width", point_seq->rect.width );
4106 cvWriteInt( fs, "height", point_seq->rect.height );
4108 cvWriteInt( fs, "color", point_seq->color );
4342 CvPoint2DSeq* point_seq = (CvPoint2DSeq*)seq;
4343 point_seq->rect.x = cvReadIntByName( fs, rect_node, "x", 0 );
4344 point_seq->rect.y = cvReadIntByName( fs, rect_node, "y", 0 );
4345 point_seq->rect.width = cvReadIntByName( fs, rect_node, "width", 0 );
4346 point_seq->rect.height = cvReadIntByName( fs, rect_node, "height", 0 );
4347 point_seq->color = cvReadIntByName( fs, node, "color", 0 );