Table of Contents

Property this

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

this[int]

Returns a Span<T> over the specified row. No P/Invoke is performed; this is pure pointer arithmetic. The row index is bounds checked. Use DangerousGetRowUnchecked(int) only when the caller has already proved that the index is valid and profiling shows the check is significant.

public Span<T> this[int row] { get; }

Parameters

row int

Zero-based row index.

Property Value

Span<T>