GpuMat Constructor (GpuMat, MCvSlice, MCvSlice) |
http://www.emgu.com
Create a GpuMat from the specific region of mat. The data is shared between the two GpuMat
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic GpuMat(
GpuMat mat,
MCvSlice rowRange,
MCvSlice colRange
)
Public Sub New (
mat As GpuMat,
rowRange As MCvSlice,
colRange As MCvSlice
)
public:
GpuMat(
GpuMat^ mat,
MCvSlice rowRange,
MCvSlice colRange
)
new :
mat : GpuMat *
rowRange : MCvSlice *
colRange : MCvSlice -> GpuMat
Parameters
- mat
- Type: Emgu.CV.CudaGpuMat
The matrix where the region is extracted from - rowRange
- Type: Emgu.CV.StructureMCvSlice
The row range. Use MCvSlice.WholeSeq for all rows. - colRange
- Type: Emgu.CV.StructureMCvSlice
The column range. Use MCvSlice.WholeSeq for all columns.
See Also