Initializes the matrix as following: arr(i,j)=(end-start)*(i*cols(arr)+j)/(cols(arr)*rows(arr))

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvRange(
	IntPtr mat,
	double start,
	double end
)
Public Shared Sub cvRange ( _
	mat As IntPtr, _
	start As Double, _
	end As Double _
)
public:
static void cvRange(
	IntPtr mat, 
	double start, 
	double end
)

Parameters

mat
IntPtr
The matrix to initialize. It should be single-channel 32-bit, integer or floating-point
start
Double
The lower inclusive boundary of the range
end
Double
The upper exclusive boundary of the range

See Also