http://www.emgu.com
Initializes the matrix as following:
arr(i,j)=(end-start)*(i*cols(arr)+j)/(cols(arr)*rows(arr))
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax 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
)
static member cvRange :
mat : IntPtr *
start : float *
end : float -> unit
Parameters
- mat
- Type: SystemIntPtr
The matrix to initialize. It should be single-channel 32-bit, integer or floating-point - start
- Type: SystemDouble
The lower inclusive boundary of the range - end
- Type: SystemDouble
The upper exclusive boundary of the range
See Also