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
da0b1d88
Commit
da0b1d88
authored
Mar 01, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8238 from PkLab:fix_doc_ellipse
parents
69f1d1dd
e03c81d9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
ellipse.png
modules/imgproc/doc/pics/ellipse.png
+0
-0
ellipse.svg
modules/imgproc/doc/pics/ellipse.svg
+0
-0
imgproc.hpp
modules/imgproc/include/opencv2/imgproc.hpp
+6
-5
No files found.
modules/imgproc/doc/pics/ellipse.png
deleted
100644 → 0
View file @
69f1d1dd
2.37 KB
modules/imgproc/doc/pics/ellipse.svg
0 → 100644
View file @
da0b1d88
This diff is collapsed.
Click to expand it.
modules/imgproc/include/opencv2/imgproc.hpp
View file @
da0b1d88
...
...
@@ -4198,13 +4198,14 @@ CV_EXPORTS_W void circle(InputOutputArray img, Point center, int radius,
/** @brief Draws a simple or thick elliptic arc or fills an ellipse sector.
The function cv::ellipse with less parameters draws an ellipse outline, a filled ellipse, an elliptic
arc, or a filled ellipse sector. A piecewise-linear curve is used to approximate the elliptic arc
arc, or a filled ellipse sector. The drawing code uses general parametric form.
A piecewise-linear curve is used to approximate the elliptic arc
boundary. If you need more control of the ellipse rendering, you can retrieve the curve using
ellipse2Poly and then render it with polylines or fill it with fillPoly
. If you use the first
variant of the function and want to draw the whole ellipse, not an arc, pass
startAngle=0
and
endAngle=360 . The figure below explains the meaning of the parameters
.
cv::ellipse2Poly and then render it with polylines or fill it with cv::fillPoly
. If you use the first
variant of the function and want to draw the whole ellipse, not an arc, pass
`startAngle=0`
and
`endAngle=360`. The figure below explains the meaning of the parameters to draw the blue arc
.
![Parameters of Elliptic Arc](pics/ellipse.
pn
g)
![Parameters of Elliptic Arc](pics/ellipse.
sv
g)
@param img Image.
@param center Center of the ellipse.
...
...
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