GpuMat Constructor (GpuMat, Range, Range)
|
creates a matrix header for a part of the bigger matrix
Namespace:
OpenCvSharp.Cuda
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic GpuMat(
GpuMat m,
Range rowRange,
Range colRange
)
Public Sub New (
m As GpuMat,
rowRange As Range,
colRange As Range
)
public:
GpuMat(
GpuMat^ m,
Range rowRange,
Range colRange
)
new :
m : GpuMat *
rowRange : Range *
colRange : Range -> GpuMat
OpenCvSharp.Cuda.GpuMat = function(m, rowRange, colRange);
Parameters
- m
- Type: OpenCvSharp.CudaGpuMat
Array that (as a whole or partly) is assigned to the constructed matrix. - rowRange
- Type: OpenCvSharpRange
Range of the m rows to take. As usual, the range start is inclusive and the range end is exclusive.
Use Range.All to take all the rows. - colRange
- Type: OpenCvSharpRange
Range of the m columns to take. Use Range.All to take all the columns.
See Also