Return parameters based on ROI
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
protected static void RoiParam(
IntPtr ptr,
out long start,
out int rows,
out int elementCount,
out int byteWidth,
out int widthStep
) |
Parameters
- ptr
- Type: System..::.IntPtr
The Pointer to the IplImage
- start
- Type:
System..::.Int64
%
The address of the pointer that point to the start of the Bytes taken into consideration ROI
- rows
- Type:
System..::.Int32
%
The number of rows taken into consideration ROI
- elementCount
- Type:
System..::.Int32
%
ROI.Width * ColorType.Dimension
- byteWidth
- Type:
System..::.Int32
%
The number of bytes in a row taken into consideration ROI
- widthStep
- Type:
System..::.Int32
%
The width step required to jump to the next row
See Also