preliminary version of a multi-level findcontours
This commit is contained in:
@@ -971,7 +971,8 @@ enum
|
||||
RETR_EXTERNAL=CV_RETR_EXTERNAL, //!< retrieve only the most external (top-level) contours
|
||||
RETR_LIST=CV_RETR_LIST, //!< retrieve all the contours without any hierarchical information
|
||||
RETR_CCOMP=CV_RETR_CCOMP, //!< retrieve the connected components (that can possibly be nested)
|
||||
RETR_TREE=CV_RETR_TREE //!< retrieve all the contours and the whole hierarchy
|
||||
RETR_TREE=CV_RETR_TREE, //!< retrieve all the contours and the whole hierarchy
|
||||
RETR_FLOODFILL=CV_RETR_FLOODFILL
|
||||
};
|
||||
|
||||
//! the contour approximation algorithm
|
||||
|
@@ -309,7 +309,8 @@ enum
|
||||
CV_RETR_EXTERNAL=0,
|
||||
CV_RETR_LIST=1,
|
||||
CV_RETR_CCOMP=2,
|
||||
CV_RETR_TREE=3
|
||||
CV_RETR_TREE=3,
|
||||
CV_RETR_FLOODFILL=4
|
||||
};
|
||||
|
||||
/* Contour approximation methods */
|
||||
|
Reference in New Issue
Block a user