Click or drag to resize

SortFlags Enumeration

http://www.emgu.com
Flags for sorting

Namespace:  Emgu.CV.CvEnum
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntax
[FlagsAttribute]
public enum SortFlags
Members
  Member nameValueDescription
SortEveryRow0 each matrix row is sorted independently
SortEveryColumn1 each matrix column is sorted independently; this flag and SortEveryRow are mutually exclusive.
SortAscending0 each matrix row is sorted in the ascending order.
SortDescending16 each matrix row is sorted in the descending order; this flag and SortAscending are also mutually exclusive.
See Also