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
aea24ffc
Commit
aea24ffc
authored
Mar 30, 2012
by
Andrey Pavlenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#796, #1701 fixing doc vs code arg-s naming consistency
parent
38f68625
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
structural_analysis_and_shape_descriptors.rst
...imgproc/doc/structural_analysis_and_shape_descriptors.rst
+2
-2
imgproc.hpp
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
+2
-2
No files found.
modules/imgproc/doc/structural_analysis_and_shape_descriptors.rst
View file @
aea24ffc
...
...
@@ -392,11 +392,11 @@ that has
*O(N logN)* complexity in the current implementation. See the OpenCV sample ``convexhull.cpp`` that demonstrates the usage of different function variants.
C
onvexityDefects
c
onvexityDefects
----------------
Finds the convexity defects of a contour.
.. ocv:function:: void convexityDefects( InputArray
points
, InputArray convexhull, OutputArray convexityDefects )
.. ocv:function:: void convexityDefects( InputArray
contour
, InputArray convexhull, OutputArray convexityDefects )
.. ocv:pyfunction:: cv2.ConvexityDefects(contour, convexhull)-> convexityDefects
...
...
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
View file @
aea24ffc
...
...
@@ -1030,9 +1030,9 @@ CV_EXPORTS_W double matchShapes( InputArray contour1, InputArray contour2,
CV_EXPORTS_W
void
convexHull
(
InputArray
points
,
OutputArray
hull
,
bool
clockwise
=
false
,
bool
returnPoints
=
true
);
//! computes the contour convexity defects
CV_EXPORTS_W
void
convexityDefects
(
InputArray
points
,
InputArray
hull
,
OutputArray
d
efects
);
CV_EXPORTS_W
void
convexityDefects
(
InputArray
contour
,
InputArray
convexhull
,
OutputArray
convexityD
efects
);
//! returns true if
f
the contour is convex. Does not support contours with self-intersection
//! returns true if the contour is convex. Does not support contours with self-intersection
CV_EXPORTS_W
bool
isContourConvex
(
InputArray
contour
);
//! finds intersection of two convex polygons
...
...
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