MatrixTDepthReshape Method |
http://www.emgu.com
Get reshaped matrix which also share the same data with the current matrix
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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