http://www.emgu.com
Flags for sorting
Namespace:
Emgu.CV.CvEnum
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax[FlagsAttribute]
public enum SortFlags
<FlagsAttribute>
Public Enumeration SortFlags
[FlagsAttribute]
public enum class SortFlags
[<FlagsAttribute>]
type SortFlags
Members
| Member name | Value | Description |
---|
| SortEveryRow | 0 |
Each matrix row is sorted independently
|
| SortEveryColumn | 1 |
Each matrix column is sorted
independently; this flag and SortEveryRow are
mutually exclusive.
|
| SortAscending | 0 |
Each matrix row is sorted in the ascending order.
|
| SortDescending | 16 |
Each matrix row is sorted in the
descending order; this flag and SortAscending are also
mutually exclusive.
|
See Also