MatrixTDepthReshape Method |
http://www.emgu.com
Get reshaped matrix which also share the same data with the current matrix
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic Matrix<TDepth> Reshape(
int newChannels,
int newRows
)
Public Function Reshape (
newChannels As Integer,
newRows As Integer
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ Reshape(
int newChannels,
int newRows
)
member Reshape :
newChannels : int *
newRows : int -> Matrix<'TDepth>
Parameters
- newChannels
- Type: SystemInt32
the new number of channles - newRows
- Type: SystemInt32
The new number of rows
Return Value
Type:
MatrixTDepthA reshaped matrix which also share the same data with the current matrix
See Also