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.1.1.3497 (4.1.1.3497)
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