CudaImageTColor, TDepth Constructor (CudaImageTColor, TDepth, MCvSlice, MCvSlice) |
http://www.emgu.com
Create a CudaImage from the specific region of image. The data is shared between the two CudaImage
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaImage(
CudaImage<TColor, TDepth> image,
MCvSlice rowRange,
MCvSlice colRange
)
Public Sub New (
image As CudaImage(Of TColor, TDepth),
rowRange As MCvSlice,
colRange As MCvSlice
)
public:
CudaImage(
CudaImage<TColor, TDepth>^ image,
MCvSlice rowRange,
MCvSlice colRange
)
new :
image : CudaImage<'TColor, 'TDepth> *
rowRange : MCvSlice *
colRange : MCvSlice -> CudaImage
Parameters
- image
- Type: Emgu.CV.CudaCudaImageTColor, TDepth
The CudaImage 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