OpenCV for Unity 2.6.4
Enox Software / Please refer to OpenCV official document ( http://docs.opencv.org/4.10.0/index.html ) for the details of the argument of the method.
|
Public Member Functions | |
void | render (Mat _plotResult) |
void | setGridLinesNumber (int gridLinesNumber) |
void | setInvertOrientation (bool _invertOrientation) |
void | setMaxX (double _plotMaxX) |
void | setMaxY (double _plotMaxY) |
void | setMinX (double _plotMinX) |
void | setMinY (double _plotMinY) |
void | setNeedPlotLine (bool _needPlotLine) |
Switches data visualization mode. | |
void | setPlotAxisColor (in Vec4d _plotAxisColor) |
void | setPlotAxisColor (in(double v0, double v1, double v2, double v3) _plotAxisColor) |
void | setPlotAxisColor (Scalar _plotAxisColor) |
void | setPlotBackgroundColor (in Vec4d _plotBackgroundColor) |
void | setPlotBackgroundColor (in(double v0, double v1, double v2, double v3) _plotBackgroundColor) |
void | setPlotBackgroundColor (Scalar _plotBackgroundColor) |
void | setPlotGridColor (in Vec4d _plotGridColor) |
void | setPlotGridColor (in(double v0, double v1, double v2, double v3) _plotGridColor) |
void | setPlotGridColor (Scalar _plotGridColor) |
void | setPlotLineColor (in Vec4d _plotLineColor) |
void | setPlotLineColor (in(double v0, double v1, double v2, double v3) _plotLineColor) |
void | setPlotLineColor (Scalar _plotLineColor) |
void | setPlotLineWidth (int _plotLineWidth) |
void | setPlotSize (int _plotSizeWidth, int _plotSizeHeight) |
void | setPlotTextColor (in Vec4d _plotTextColor) |
void | setPlotTextColor (in(double v0, double v1, double v2, double v3) _plotTextColor) |
void | setPlotTextColor (Scalar _plotTextColor) |
void | setPointIdxToPrint (int pointIdx) |
Sets the index of a point which coordinates will be printed on the top left corner of the plot (if ShowText flag is true). | |
void | setShowGrid (bool needShowGrid) |
void | setShowText (bool needShowText) |
Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
virtual void | clear () |
Clears the algorithm state. | |
virtual bool | empty () |
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read. | |
virtual string | getDefaultName () |
IntPtr | getNativeObjAddr () |
void | save (string filename) |
Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
void | Dispose () |
void | ThrowIfDisposed () |
Static Public Member Functions | |
static new Plot2d | __fromPtr__ (IntPtr addr) |
static Plot2d | create (Mat data) |
Creates Plot2d object. | |
static Plot2d | create (Mat dataX, Mat dataY) |
Creates Plot2d object. | |
Static Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
static Algorithm | __fromPtr__ (IntPtr addr) |
Static Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
static IntPtr | ThrowIfNullIntPtr (IntPtr ptr) |
Protected Member Functions | |
override void | Dispose (bool disposing) |
Protected Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
Protected Member Functions inherited from OpenCVForUnity.DisposableOpenCVObject | |
DisposableOpenCVObject () | |
DisposableOpenCVObject (bool isEnabledDispose) | |
DisposableOpenCVObject (IntPtr ptr) | |
DisposableOpenCVObject (IntPtr ptr, bool isEnabledDispose) | |
Protected Member Functions inherited from OpenCVForUnity.DisposableObject | |
DisposableObject () | |
DisposableObject (bool isEnabledDispose) | |
Additional Inherited Members | |
Package Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
Package Attributes inherited from OpenCVForUnity.DisposableOpenCVObject | |
Properties inherited from OpenCVForUnity.DisposableObject | |
bool | IsDisposed [get, protected set] |
bool | IsEnabledDispose [get, set] |
|
static |
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. |
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. |
|
protectedvirtual |
Reimplemented from OpenCVForUnity.CoreModule.Algorithm.
void OpenCVForUnity.PlotModule.Plot2d.render | ( | Mat | _plotResult | ) |
void OpenCVForUnity.PlotModule.Plot2d.setGridLinesNumber | ( | int | gridLinesNumber | ) |
void OpenCVForUnity.PlotModule.Plot2d.setInvertOrientation | ( | bool | _invertOrientation | ) |
void OpenCVForUnity.PlotModule.Plot2d.setMaxX | ( | double | _plotMaxX | ) |
void OpenCVForUnity.PlotModule.Plot2d.setMaxY | ( | double | _plotMaxY | ) |
void OpenCVForUnity.PlotModule.Plot2d.setMinX | ( | double | _plotMinX | ) |
void OpenCVForUnity.PlotModule.Plot2d.setMinY | ( | double | _plotMinY | ) |
void OpenCVForUnity.PlotModule.Plot2d.setNeedPlotLine | ( | bool | _needPlotLine | ) |
Switches data visualization mode.
_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. |
void OpenCVForUnity.PlotModule.Plot2d.setPlotAxisColor | ( | in Vec4d | _plotAxisColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotAxisColor | ( | in(double v0, double v1, double v2, double v3) | _plotAxisColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotAxisColor | ( | Scalar | _plotAxisColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotBackgroundColor | ( | in Vec4d | _plotBackgroundColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotBackgroundColor | ( | in(double v0, double v1, double v2, double v3) | _plotBackgroundColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotBackgroundColor | ( | Scalar | _plotBackgroundColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotGridColor | ( | in Vec4d | _plotGridColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotGridColor | ( | in(double v0, double v1, double v2, double v3) | _plotGridColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotGridColor | ( | Scalar | _plotGridColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotLineColor | ( | in Vec4d | _plotLineColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotLineColor | ( | in(double v0, double v1, double v2, double v3) | _plotLineColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotLineColor | ( | Scalar | _plotLineColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotLineWidth | ( | int | _plotLineWidth | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotSize | ( | int | _plotSizeWidth, |
int | _plotSizeHeight ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotTextColor | ( | in Vec4d | _plotTextColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotTextColor | ( | in(double v0, double v1, double v2, double v3) | _plotTextColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPlotTextColor | ( | Scalar | _plotTextColor | ) |
void OpenCVForUnity.PlotModule.Plot2d.setPointIdxToPrint | ( | int | pointIdx | ) |
Sets the index of a point which coordinates will be printed on the top left corner of the plot (if ShowText flag is true).
pointIdx | index of the required point in data array. |
void OpenCVForUnity.PlotModule.Plot2d.setShowGrid | ( | bool | needShowGrid | ) |
void OpenCVForUnity.PlotModule.Plot2d.setShowText | ( | bool | needShowText | ) |