GpuMatRowIndexerItem Property (Int32, Int32)
|
Creates a matrix header for the specified column span.
Namespace:
OpenCvSharp.Cuda
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic override GpuMat this[
int startCol,
int endCol
] { get; set; }
Public Overrides Default Property Item (
startCol As Integer,
endCol As Integer
) As GpuMat
Get
Set
public:
virtual property GpuMat^ default[int startCol, int endCol] {
GpuMat^ get (int startCol, int endCol) override;
void set (int startCol, int endCol, GpuMat^ value) override;
}
abstract Item : GpuMat with get, set
override Item : GpuMat with get, set
function get_Item(startCol, endCol);
function set_Item(value);
Parameters
- startCol
- Type: SystemInt32
An inclusive 0-based start index of the column span. - endCol
- Type: SystemInt32
An exclusive 0-based ending index of the column span.
Return Value
Type:
GpuMat
See Also