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