http://www.emgu.com
Returns a GpuMat corresponding to the ith row 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 Row(
int i
)
Public Function Row (
i As Integer
) As GpuMat
public:
GpuMat^ Row(
int i
)
member Row :
i : int -> GpuMat
Parameters
- i
- Type: SystemInt32
The row to be extracted
Return Value
Type:
GpuMatThe ith row of the GpuMat
RemarksThe parent GpuMat should never be released before the returned GpuMat that represent the subregion
See Also