MatOfPoint3d Constructor (MatOfPoint3d, Range)
|
creates a matrix header for a part of the bigger matrix
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic MatOfPoint3d(
MatOfPoint3d m,
params Range[] ranges
)
Public Sub New (
m As MatOfPoint3d,
ParamArray ranges As Range()
)
public:
MatOfPoint3d(
MatOfPoint3d^ m,
... array<Range>^ ranges
)
new :
m : MatOfPoint3d *
ranges : Range[] -> MatOfPoint3d
OpenCvSharp.MatOfPoint3d = function(m, ... ranges);
Parameters
- m
- Type: OpenCvSharpMatOfPoint3d
Array that (as a whole or partly) is assigned to the constructed matrix.
No data is copied by these constructors. Instead, the header pointing to m data or its sub-array
is constructed and associated with it. The reference counter, if any, is incremented.
So, when you modify the matrix formed using such a constructor, you also modify the corresponding elements of m .
If you want to have an independent copy of the sub-array, use Mat.Clone() . - ranges
- Type: OpenCvSharpRange
Array of selected ranges of m along each dimensionality.
See Also