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
66aff45e
Commit
66aff45e
authored
Jul 05, 2012
by
Marina Kolpakova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed #2130
parent
e900952b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
core.hpp
modules/core/include/opencv2/core/core.hpp
+1
-1
drawing.cpp
modules/core/src/drawing.cpp
+1
-1
No files found.
modules/core/include/opencv2/core/core.hpp
View file @
66aff45e
...
@@ -2539,7 +2539,7 @@ CV_EXPORTS_W void fillPoly(InputOutputArray img, InputArrayOfArrays pts,
...
@@ -2539,7 +2539,7 @@ CV_EXPORTS_W void fillPoly(InputOutputArray img, InputArrayOfArrays pts,
Point
offset
=
Point
()
);
Point
offset
=
Point
()
);
//! draws one or more polygonal curves
//! draws one or more polygonal curves
CV_EXPORTS
void
polylines
(
Mat
&
img
,
const
Point
**
pts
,
const
int
*
npts
,
CV_EXPORTS
void
polylines
(
Mat
&
img
,
const
Point
*
const
*
pts
,
const
int
*
npts
,
int
ncontours
,
bool
isClosed
,
const
Scalar
&
color
,
int
ncontours
,
bool
isClosed
,
const
Scalar
&
color
,
int
thickness
=
1
,
int
lineType
=
8
,
int
shift
=
0
);
int
thickness
=
1
,
int
lineType
=
8
,
int
shift
=
0
);
...
...
modules/core/src/drawing.cpp
View file @
66aff45e
...
@@ -1730,7 +1730,7 @@ void fillPoly( Mat& img, const Point** pts, const int* npts, int ncontours,
...
@@ -1730,7 +1730,7 @@ void fillPoly( Mat& img, const Point** pts, const int* npts, int ncontours,
}
}
void
polylines
(
Mat
&
img
,
const
Point
**
pts
,
const
int
*
npts
,
int
ncontours
,
bool
isClosed
,
void
polylines
(
Mat
&
img
,
const
Point
*
const
*
pts
,
const
int
*
npts
,
int
ncontours
,
bool
isClosed
,
const
Scalar
&
color
,
int
thickness
,
int
line_type
,
int
shift
)
const
Scalar
&
color
,
int
thickness
,
int
line_type
,
int
shift
)
{
{
if
(
line_type
==
CV_AA
&&
img
.
depth
()
!=
CV_8U
)
if
(
line_type
==
CV_AA
&&
img
.
depth
()
!=
CV_8U
)
...
...
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