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
)

Parameters

newChannels
Type: System..::.Int32
the new number of channles
newRows
Type: System..::.Int32
The new number of rows

Return Value

A reshaped matrix which also share the same data with the current matrix

See Also