Enum BlobsOrder

BlobsOrder enumeration

The blobs order

public enum BlobsOrder

Values

NameValueDescription
None0Unsorted order (as it is collected by algorithm).
Size1Objects are sorted by size in descending order (bigger objects go first). Size is calculated as Width * Height.
Area2Objects are sorted by area in descending order (bigger objects go first).
YX3Objects are sorted by Y coordinate, then by X coordinate in ascending order (smaller coordinates go first).
XY4Objects are sorted by X coordinate, then by Y coordinate in ascending order (smaller coordinates go first).

See Also