Method Create
- Namespace
- OpenCvSharp.Plot
- Assembly
- OpenCvSharp.dll
Create(InputArray)
Creates a Plot2d object.
public static Plot2d Create(InputArray data)
Parameters
dataInputArray1xN or Nx1 matrix containing Y values of points to plot. X values will be equal to indexes of corresponding elements in data matrix.
Returns
Create(InputArray, InputArray)
Creates a Plot2d object.
public static Plot2d Create(InputArray dataX, InputArray dataY)
Parameters
dataXInputArray1xN or Nx1 matrix X values of points to plot.
dataYInputArray1xN or Nx1 matrix containing Y values of points to plot.