| MatTElemReshape Method (Int32) |
Changes the shape of a 2D matrix without copying the data.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public Mat<TElem> Reshape(
params int[] newDims
)
Public Function Reshape (
ParamArray newDims As Integer()
) As Mat(Of TElem)
public:
Mat<TElem>^ Reshape(
... array<int>^ newDims
)
member Reshape :
newDims : int[] -> Mat<'TElem>
Parameters
- newDims
- Type: SystemInt32
New number of rows. If the parameter is 0, the number of rows remains the same.
Return Value
Type:
MatTElem[Missing <returns> documentation for "M:OpenCvSharp.Mat`1.Reshape(System.Int32[])"]
See Also