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
a2df4909
Commit
a2df4909
authored
Aug 08, 2012
by
Alexander Mordvintesv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added CV_IN_OUT to img argument of drawing functions
parent
8c3984c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
core.hpp
modules/core/include/opencv2/core/core.hpp
+6
-6
No files found.
modules/core/include/opencv2/core/core.hpp
View file @
a2df4909
...
...
@@ -2492,32 +2492,32 @@ CV_EXPORTS void randShuffle(InputOutputArray dst, double iterFactor=1., RNG* rng
CV_EXPORTS_AS
(
randShuffle
)
void
randShuffle_
(
InputOutputArray
dst
,
double
iterFactor
=
1.
);
//! draws the line segment (pt1, pt2) in the image
CV_EXPORTS_W
void
line
(
Mat
&
img
,
Point
pt1
,
Point
pt2
,
const
Scalar
&
color
,
CV_EXPORTS_W
void
line
(
CV_IN_OUT
Mat
&
img
,
Point
pt1
,
Point
pt2
,
const
Scalar
&
color
,
int
thickness
=
1
,
int
lineType
=
8
,
int
shift
=
0
);
//! draws the rectangle outline or a solid rectangle with the opposite corners pt1 and pt2 in the image
CV_EXPORTS_W
void
rectangle
(
Mat
&
img
,
Point
pt1
,
Point
pt2
,
CV_EXPORTS_W
void
rectangle
(
CV_IN_OUT
Mat
&
img
,
Point
pt1
,
Point
pt2
,
const
Scalar
&
color
,
int
thickness
=
1
,
int
lineType
=
8
,
int
shift
=
0
);
//! draws the rectangle outline or a solid rectangle covering rec in the image
CV_EXPORTS
void
rectangle
(
Mat
&
img
,
Rect
rec
,
CV_EXPORTS
void
rectangle
(
CV_IN_OUT
Mat
&
img
,
Rect
rec
,
const
Scalar
&
color
,
int
thickness
=
1
,
int
lineType
=
8
,
int
shift
=
0
);
//! draws the circle outline or a solid circle in the image
CV_EXPORTS_W
void
circle
(
Mat
&
img
,
Point
center
,
int
radius
,
CV_EXPORTS_W
void
circle
(
CV_IN_OUT
Mat
&
img
,
Point
center
,
int
radius
,
const
Scalar
&
color
,
int
thickness
=
1
,
int
lineType
=
8
,
int
shift
=
0
);
//! draws an elliptic arc, ellipse sector or a rotated ellipse in the image
CV_EXPORTS_W
void
ellipse
(
Mat
&
img
,
Point
center
,
Size
axes
,
CV_EXPORTS_W
void
ellipse
(
CV_IN_OUT
Mat
&
img
,
Point
center
,
Size
axes
,
double
angle
,
double
startAngle
,
double
endAngle
,
const
Scalar
&
color
,
int
thickness
=
1
,
int
lineType
=
8
,
int
shift
=
0
);
//! draws a rotated ellipse in the image
CV_EXPORTS_W
void
ellipse
(
Mat
&
img
,
const
RotatedRect
&
box
,
const
Scalar
&
color
,
CV_EXPORTS_W
void
ellipse
(
CV_IN_OUT
Mat
&
img
,
const
RotatedRect
&
box
,
const
Scalar
&
color
,
int
thickness
=
1
,
int
lineType
=
8
);
//! draws a filled convex polygon in the image
...
...
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