Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
2283cea6
Commit
2283cea6
authored
Oct 06, 2016
by
Maksim Shabunin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #793 from sovrasov:plot_doc_update
parents
2677e103
ae8139b7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
plot.hpp
modules/plot/include/opencv2/plot.hpp
+10
-0
No files found.
modules/plot/include/opencv2/plot.hpp
View file @
2283cea6
...
...
@@ -59,6 +59,9 @@ namespace cv
{
namespace
plot
{
//! @addtogroup plot
//! @{
class
CV_EXPORTS_W
Plot2d
:
public
Algorithm
{
public
:
...
...
@@ -68,6 +71,12 @@ namespace cv
CV_WRAP
virtual
void
setMaxX
(
double
_plotMaxX
)
=
0
;
CV_WRAP
virtual
void
setMaxY
(
double
_plotMaxY
)
=
0
;
CV_WRAP
virtual
void
setPlotLineWidth
(
int
_plotLineWidth
)
=
0
;
/**
* @brief Switches data visualization mode
*
* @param _needPlotLine if true then neighbour plot points will be connected by lines.
* In other case data will be plotted as a set of standalone points.
*/
CV_WRAP
virtual
void
setNeedPlotLine
(
bool
_needPlotLine
)
=
0
;
CV_WRAP
virtual
void
setPlotLineColor
(
Scalar
_plotLineColor
)
=
0
;
CV_WRAP
virtual
void
setPlotBackgroundColor
(
Scalar
_plotBackgroundColor
)
=
0
;
...
...
@@ -92,6 +101,7 @@ namespace cv
* @param dataY \f$1xN\f$ or \f$Nx1\f$ matrix containing \f$Y\f$ values of points to plot.
*/
CV_EXPORTS_W
Ptr
<
Plot2d
>
createPlot2d
(
InputArray
dataX
,
InputArray
dataY
);
//! @}
}
}
...
...
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