Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
f196dd5f
Commit
f196dd5f
authored
Mar 24, 2012
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
preliminary version of a multi-level findcontours
parent
9b2d7e19
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
imgproc.hpp
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
+2
-1
types_c.h
modules/imgproc/include/opencv2/imgproc/types_c.h
+2
-1
contours.cpp
modules/imgproc/src/contours.cpp
+0
-0
No files found.
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
View file @
f196dd5f
...
...
@@ -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
...
...
modules/imgproc/include/opencv2/imgproc/types_c.h
View file @
f196dd5f
...
...
@@ -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 */
...
...
modules/imgproc/src/contours.cpp
View file @
f196dd5f
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment