Table of Contents

Method Create

Namespace
OpenCvSharp.Plot
Assembly
OpenCvSharp.dll

Create(InputArray)

Creates a Plot2d object.

public static Plot2d Create(InputArray data)

Parameters

data InputArray

1xN or Nx1 matrix containing Y values of points to plot. X values will be equal to indexes of corresponding elements in data matrix.

Returns

Plot2d

Create(InputArray, InputArray)

Creates a Plot2d object.

public static Plot2d Create(InputArray dataX, InputArray dataY)

Parameters

dataX InputArray

1xN or Nx1 matrix X values of points to plot.

dataY InputArray

1xN or Nx1 matrix containing Y values of points to plot.

Returns

Plot2d