CudaImageTColor, TDepthRow Method |
http://www.emgu.com
Returns a CudaImage corresponding to the ith row of the CudaImage. The data is shared with the current Image.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaImage<TColor, TDepth> Row(
int i
)
Public Function Row (
i As Integer
) As CudaImage(Of TColor, TDepth)
public:
CudaImage<TColor, TDepth>^ Row(
int i
)
member Row :
i : int -> CudaImage<'TColor, 'TDepth>
Parameters
- i
- Type: SystemInt32
The row to be extracted
Return Value
Type:
CudaImageTColor,
TDepthThe ith row of the CudaImage
RemarksThe parent CudaImage should never be released before the returned CudaImage that represent the subregion
See Also