Click or drag to resize
CvInvokecvReshape Method
http://www.emgu.com
initializes CvMat header so that it points to the same data as the original array but has different shape - different number of channels, different number of rows or both

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static IntPtr cvReshape(
	IntPtr arr,
	IntPtr header,
	int newCn,
	int newRows
)

Parameters

arr
Type: SystemIntPtr
Input array
header
Type: SystemIntPtr
Output header to be filled
newCn
Type: SystemInt32
New number of channels. new_cn = 0 means that number of channels remains unchanged
newRows
Type: SystemInt32
New number of rows. new_rows = 0 means that number of rows remains unchanged unless it needs to be changed according to new_cn value. destination array to be changed

Return Value

Type: IntPtr

[Missing <returns> documentation for "M:Emgu.CV.CvInvoke.cvReshape(System.IntPtr,System.IntPtr,System.Int32,System.Int32)"]

See Also