Home
last modified time | relevance | path

Searched refs:CV_SEQ_FLAG_HOLE (Results 1 – 8 of 8) sorted by relevance

/external/opencv/cv/src/
Dcvcontours.cpp253 scanner->frame.flags = CV_SEQ_FLAG_HOLE; in cvStartFindContours()
967 seq->flags |= is_hole ? CV_SEQ_FLAG_HOLE : 0; in cvFindNextContour()
1461 contour->flags |= CV_SEQ_FLAG_HOLE; in icvFindContoursInInterval()
/external/opencv3/modules/imgproc/src/
Dcontours.cpp234 scanner->frame.flags = CV_SEQ_FLAG_HOLE; in cvStartFindContours()
1136 seq->flags |= is_hole ? CV_SEQ_FLAG_HOLE : 0; in cvFindNextContour()
1613 contour->flags |= CV_SEQ_FLAG_HOLE; in icvFindContoursInInterval()
Ddrawing.cpp2404 void* clr = (contour->flags & CV_SEQ_FLAG_HOLE) == 0 ? ext_buf : hole_buf; in cvDrawContours()
/external/opencv/cxcore/include/
Dcxtypes.h1401 #define CV_SEQ_FLAG_HOLE (8 << CV_SEQ_FLAG_SHIFT) macro
1440 #define CV_IS_SEQ_HOLE( seq ) (((seq)->flags & CV_SEQ_FLAG_HOLE) != 0)
/external/opencv/cvaux/src/
Dcvsegment.cpp388 cvStartWriteSeq( CV_SEQ_CONTOUR | (is_hole ? CV_SEQ_FLAG_HOLE : 0), in icvGetComponent()
/external/opencv3/modules/core/include/opencv2/core/
Dtypes_c.h1433 #define CV_SEQ_FLAG_HOLE (2 << CV_SEQ_FLAG_SHIFT) macro
1472 #define CV_IS_SEQ_HOLE( seq ) (((seq)->flags & CV_SEQ_FLAG_HOLE) != 0)
/external/opencv3/modules/core/src/
Dpersistence.cpp4243 flags |= CV_SEQ_FLAG_HOLE; in icvReadSeq()
4253 flags |= CV_SEQ_FLAG_HOLE; in icvReadSeq()
/external/opencv/cxcore/src/
Dcxdrawing.cpp2478 void* clr = (contour->flags & CV_SEQ_FLAG_HOLE) == 0 ? ext_buf : hole_buf; in cvDrawContours()