CudaImageTColor, TDepth Constructor (CudaImageTColor, TDepth, Range, Range) |
http://www.emgu.com
Create a CudaImage from the specific region of image. The data is shared between the two CudaImage
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic CudaImage(
CudaImage<TColor, TDepth> image,
Range rowRange,
Range colRange
)
Public Sub New (
image As CudaImage(Of TColor, TDepth),
rowRange As Range,
colRange As Range
)
public:
CudaImage(
CudaImage<TColor, TDepth>^ image,
Range rowRange,
Range colRange
)
new :
image : CudaImage<'TColor, 'TDepth> *
rowRange : Range *
colRange : Range -> CudaImage
Parameters
- image
- Type: Emgu.CV.CudaCudaImageTColor, TDepth
The CudaImage where the region is extracted from - rowRange
- Type: Emgu.CV.StructureRange
The row range. Use MCvSlice.WholeSeq for all rows. - colRange
- Type: Emgu.CV.StructureRange
The column range. Use MCvSlice.WholeSeq for all columns.
See Also