派生自 Algorithm/baseDetector

孙天宇
2022-07-12 6eb847801e6d1d66105a8ec2fe8c449c9e24da4c
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef HUNGARIANOPER_H
#define HUNGARIANOPER_H
#include "munkres/munkres.h"
//#include "munkres/adapters/boostmatrixadapter.h"
#include "../tracker_tools/dataType.h"
 
class HungarianOper {
public:
    static Eigen::Matrix<float, -1, 2, Eigen::RowMajor> Solve(const DYNAMICM &cost_matrix);
};
 
#endif // HUNGARIANOPER_H