36 #include <visp3/core/vpConfig.h>
38 #if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_17) && \
39 (!defined(_MSC_VER) || ((VISP_CXX_STANDARD >= VISP_CXX_STANDARD_17) && (_MSC_VER >= 1911)))
62 template <
typename Type>
63 static std::vector<std::pair<unsigned int, unsigned int> > run(std::vector<std::vector<Type> > costs);
66 enum ZERO_T :
unsigned int;
67 enum STEP_T :
unsigned int;
70 template <
typename Type>
static void padCostMatrix(std::vector<std::vector<Type> > &costs);
73 template <
typename Type>
74 static std::optional<std::pair<unsigned int, unsigned int> > findAZero(
const std::vector<std::vector<Type> > &costs,
75 const std::vector<bool> &row_cover,
76 const std::vector<bool> &col_cover);
77 static std::optional<unsigned int> findStarInRow(
const std::vector<std::vector<ZERO_T> > &mask,
78 const unsigned int &row);
79 static std::optional<unsigned int> findStarInCol(
const std::vector<std::vector<ZERO_T> > &mask,
80 const unsigned int &col);
81 static std::optional<unsigned int> findPrimeInRow(
const std::vector<std::vector<ZERO_T> > &mask,
82 const unsigned int &row);
83 template <
typename Type>
84 static Type findSmallest(
const std::vector<std::vector<Type> > &costs,
const std::vector<bool> &row_cover,
85 const std::vector<bool> &col_cover);
88 static void augmentPath(std::vector<std::vector<ZERO_T> > &mask,
89 const std::vector<std::pair<unsigned int, unsigned int> > &path);
90 static void clearCovers(std::vector<bool> &row_cover, std::vector<bool> &col_cover);
91 static void erasePrimes(std::vector<std::vector<ZERO_T> > &mask);
94 template <
typename Type>
static STEP_T stepOne(std::vector<std::vector<Type> > &costs);
95 template <
typename Type>
96 static STEP_T stepTwo(std::vector<std::vector<Type> > &costs, std::vector<std::vector<ZERO_T> > &mask,
97 std::vector<bool> &row_cover, std::vector<bool> &col_cover);
98 static STEP_T stepThree(
const std::vector<std::vector<ZERO_T> > &mask, std::vector<bool> &col_cover);
99 template <
typename Type>
100 static std::tuple<STEP_T, std::optional<std::pair<unsigned int, unsigned int> > >
101 stepFour(
const std::vector<std::vector<Type> > &costs, std::vector<std::vector<ZERO_T> > &mask,
102 std::vector<bool> &row_cover, std::vector<bool> &col_cover);
103 static STEP_T stepFive(std::vector<std::vector<ZERO_T> > &mask,
const std::pair<unsigned int, unsigned int> &path_0,
104 std::vector<bool> &row_cover, std::vector<bool> &col_cover);
105 template <
typename Type>
106 static STEP_T stepSix(std::vector<std::vector<Type> > &costs,
const std::vector<bool> &row_cover,
107 const std::vector<bool> &col_cover);
110 static constexpr
auto ZeroEpsilon{1e-6};
115 enum vpMunkres::STEP_T :
unsigned int { ENTRY = 0, ONE = 1, TWO = 2, THREE = 3, FOUR = 4, FIVE = 5, SIX = 6, DONE };
122 template <
typename Type>
inline void vpMunkres::padCostMatrix(std::vector<std::vector<Type> > &costs)
124 const auto row_input_size = costs.size();
125 const auto col_input_size = costs.at(0).size();
127 if (row_input_size > col_input_size) {
128 for (
auto &vec : costs)
129 vec.resize(row_input_size, 0);
132 while (costs.size() < col_input_size) {
133 costs.emplace_back(col_input_size, 0);
145 template <
typename Type>
146 inline std::optional<std::pair<unsigned int, unsigned int> >
147 vpMunkres::findAZero(
const std::vector<std::vector<Type> > &costs,
const std::vector<bool> &row_cover,
148 const std::vector<bool> &col_cover)
150 for (
auto row = 0u; row < costs.size(); row++)
151 for (
auto col = 0u; col < costs.size(); col++)
152 if (
vpMath::equal(costs.at(row).at(col),
static_cast<Type
>(vpMunkres::ZeroEpsilon)) && !row_cover.at(row) &&
153 !col_cover.at(col)) {
154 return std::make_optional<std::pair<unsigned int, unsigned int> >(row, col);
168 template <
typename Type>
169 inline Type vpMunkres::findSmallest(
const std::vector<std::vector<Type> > &costs,
const std::vector<bool> &row_cover,
170 const std::vector<bool> &col_cover)
172 auto minval = std::numeric_limits<Type>::max();
173 for (
auto row = 0u; row < costs.size(); row++)
174 for (
auto col = 0u; col < costs.size(); col++)
175 if (minval > costs.at(row).at(col) && !row_cover.at(row) && !col_cover.at(col)) {
176 minval = costs.at(row).at(col);
190 template <
typename Type>
inline vpMunkres::STEP_T vpMunkres::stepOne(std::vector<std::vector<Type> > &costs)
193 std::for_each(begin(costs), end(costs), [](
auto &cost_row) {
194 const auto min_in_row = *std::min_element(begin(cost_row), end(cost_row));
195 std::transform(begin(cost_row), end(cost_row), begin(cost_row),
196 [&min_in_row](
auto &cost) {
return cost - min_in_row; });
200 for (
auto col = 0u; col < costs.size(); ++col) {
201 auto minval = std::numeric_limits<Type>::max();
202 for (
const auto &cost_row : costs) {
203 minval = std::min(minval, cost_row.at(col));
206 for (
auto &cost_row : costs) {
207 cost_row.at(col) -= minval;
225 template <
typename Type>
227 std::vector<std::vector<vpMunkres::ZERO_T> > &mask,
228 std::vector<bool> &row_cover, std::vector<bool> &col_cover)
230 for (
auto row = 0u; row < costs.size(); row++) {
231 for (
auto col = 0u; col < costs.size(); col++) {
232 if (
vpMath::equal(costs.at(row).at(col),
static_cast<Type
>(vpMunkres::ZeroEpsilon)) && !row_cover.at(row) &&
233 !col_cover.at(col)) {
234 mask.at(row).at(col) = vpMunkres::ZERO_T::STARRED;
235 row_cover.at(row) =
true;
236 col_cover.at(col) =
true;
242 clearCovers(row_cover, col_cover);
258 template <
typename Type>
259 inline std::tuple<vpMunkres::STEP_T, std::optional<std::pair<unsigned int, unsigned int> > >
260 vpMunkres::stepFour(
const std::vector<std::vector<Type> > &costs, std::vector<std::vector<vpMunkres::ZERO_T> > &mask,
261 std::vector<bool> &row_cover, std::vector<bool> &col_cover)
263 if (
const auto zero = findAZero(costs, row_cover, col_cover)) {
264 const auto [row, col] = *zero;
265 mask.at(row).at(col) = vpMunkres::ZERO_T::PRIMED;
267 if (
const auto star_in_row = findStarInRow(mask, row)) {
268 row_cover.at(row) =
true;
269 col_cover.at(*star_in_row) =
false;
272 return {
vpMunkres::STEP_T(5), std::make_optional<std::pair<unsigned int, unsigned int> >(row, col)};
288 template <
typename Type>
289 inline vpMunkres::STEP_T vpMunkres::stepSix(std::vector<std::vector<Type> > &costs,
const std::vector<bool> &row_cover,
290 const std::vector<bool> &col_cover)
292 const auto minval = findSmallest(costs, row_cover, col_cover);
293 for (
auto row = 0u; row < costs.size(); row++) {
294 for (
auto col = 0u; col < costs.size(); col++) {
295 if (row_cover.at(row)) {
296 costs.at(row).at(col) += minval;
299 if (!col_cover.at(col)) {
300 costs.at(row).at(col) -= minval;
314 template <
typename Type>
315 inline std::vector<std::pair<unsigned int, unsigned int> >
vpMunkres::run(std::vector<std::vector<Type> > costs)
317 const auto original_row_size = costs.size();
318 const auto original_col_size = costs.front().size();
319 const auto sq_size = std::max(original_row_size, original_col_size);
321 auto mask = std::vector<std::vector<vpMunkres::ZERO_T> >(
322 sq_size, std::vector<vpMunkres::ZERO_T>(sq_size, vpMunkres::ZERO_T::NA));
323 auto row_cover = std::vector<bool>(sq_size,
false);
324 auto col_cover = std::vector<bool>(sq_size,
false);
326 std::optional<std::pair<unsigned int, unsigned int> > path_0{std::nullopt};
328 auto step{vpMunkres::STEP_T::ENTRY};
329 while (step != vpMunkres::STEP_T::DONE) {
331 case vpMunkres::STEP_T::ENTRY:
332 padCostMatrix(costs);
336 step = stepOne(costs);
339 step = stepTwo(costs, mask, row_cover, col_cover);
342 step = stepThree(mask, col_cover);
345 std::tie(step, path_0) = stepFour(costs, mask, row_cover, col_cover);
348 step = stepFive(mask, *path_0, row_cover, col_cover);
351 step = stepSix(costs, row_cover, col_cover);
353 case vpMunkres::STEP_T::DONE:
360 std::vector<std::pair<unsigned int, unsigned int> > ret{};
361 for (
auto i = 0u; i < original_row_size; i++) {
362 if (
const auto it = std::find(begin(mask.at(i)), end(mask.at(i)), vpMunkres::ZERO_T::STARRED);
363 it != end(mask.at(i))) {
364 if (
const unsigned int j =
static_cast<unsigned int>(std::distance(begin(mask.at(i)), it));
365 j < original_col_size) {
366 ret.emplace_back(i, j);
static bool equal(double x, double y, double threshold=0.001)
static std::vector< std::pair< unsigned int, unsigned int > > run(std::vector< std::vector< Type > > costs)