Get reshaped matrix which also share the same data with the current matrix
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
| C# |
|---|
public Matrix<TDepth> Reshape(
int newChannels,
int newRows
) |
| Visual Basic (Declaration) |
|---|
Public Function Reshape ( _
newChannels As Integer, _
newRows As Integer _
) As Matrix(Of TDepth) |
| Visual C++ |
|---|
public:
Matrix<TDepth>^ Reshape(
int newChannels,
int newRows
) |
Return Value
A reshaped matrix which also share the same data with the current matrix
See Also