| SortFlags Enumeration |
Signals an error and raises the exception.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax [FlagsAttribute]
public enum SortFlags
<FlagsAttribute>
Public Enumeration SortFlags
[FlagsAttribute]
public enum class SortFlags
[<FlagsAttribute>]
type SortFlags
Members
| Member name | Value | Description |
---|
| EveryRow | 0 |
each matrix row is sorted independently
|
| EveryColumn | 1 |
each matrix column is sorted independently;
this flag and the previous one are mutually exclusive.
|
| Ascending | 0 |
each matrix row is sorted in the ascending order.
|
| Descending | 16 |
each matrix row is sorted in the descending order;
this flag and the previous one are also mutually exclusive.
|
See Also