CudaImageTColor, TDepthRowRange Method |
http://www.emgu.com
Returns a CudaImage corresponding to the [startend) rows of the CudaImage. The data is shared with the current Image.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic CudaImage<TColor, TDepth> RowRange(
int start,
int end
)
Public Function RowRange (
start As Integer,
end As Integer
) As CudaImage(Of TColor, TDepth)
public:
CudaImage<TColor, TDepth>^ RowRange(
int start,
int end
)
member RowRange :
start : int *
end : int -> CudaImage<'TColor, 'TDepth>
Parameters
- start
- Type: SystemInt32
The inclusive stating row to be extracted - end
- Type: SystemInt32
The exclusive ending row to be extracted
Return Value
Type:
CudaImageTColor,
TDepthThe [
startend) rows of the CudaImage
RemarksThe parent CudaImage should never be released before the returned CudaImage that represent the subregion
See Also