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
)
Visual Basic (Declaration)
Protected Shared Sub RoiParam ( _
	ptr As IntPtr, _
	<OutAttribute> ByRef start As Long, _
	<OutAttribute> ByRef rows As Integer, _
	<OutAttribute> ByRef elementCount As Integer, _
	<OutAttribute> ByRef byteWidth As Integer, _
	<OutAttribute> ByRef widthStep As Integer _
)
Visual C++
protected:
static void RoiParam(
	IntPtr ptr, 
	[OutAttribute] long long% start, 
	[OutAttribute] int% rows, 
	[OutAttribute] int% elementCount, 
	[OutAttribute] int% byteWidth, 
	[OutAttribute] 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