OpenCV
3.2.0
Open Source Computer Vision
|
Classes | |
class | cv::plot::Plot2d |
Functions | |
Ptr< Plot2d > | cv::plot::createPlot2d (InputArray data) |
Creates Plot2d object. More... | |
Ptr< Plot2d > | cv::plot::createPlot2d (InputArray dataX, InputArray dataY) |
Creates Plot2d object. More... | |
Ptr<Plot2d> cv::plot::createPlot2d | ( | InputArray | data | ) |
Creates Plot2d object.
data | \(1xN\) or \(Nx1\) matrix containing \(Y\) values of points to plot. \(X\) values will be equal to indexes of correspondind elements in data matrix. |
Ptr<Plot2d> cv::plot::createPlot2d | ( | InputArray | dataX, |
InputArray | dataY | ||
) |
Creates Plot2d object.
dataX | \(1xN\) or \(Nx1\) matrix \(X\) values of points to plot. |
dataY | \(1xN\) or \(Nx1\) matrix containing \(Y\) values of points to plot. |