enum cv::SortFlags

Overview

#include <core.hpp>

enum SortFlags
{
    SORT_EVERY_ROW    = 0,
    SORT_EVERY_COLUMN = 1,
    SORT_ASCENDING    = 0,
    SORT_DESCENDING   = 16,
};

Detailed Documentation

Enum Values

SORT_EVERY_ROW

each matrix row is sorted independently

SORT_EVERY_COLUMN

each matrix column is sorted independently; this flag and the previous one are mutually exclusive.

SORT_ASCENDING

each matrix row is sorted in the ascending order.

SORT_DESCENDING

each matrix row is sorted in the descending order; this flag and the previous one are also mutually exclusive.