Last active
April 14, 2024 04:20
-
-
Save imcj/34afcd6245cec28161ac7574881489b1 to your computer and use it in GitHub Desktop.
The deep sort comments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main() { | |
Eigen::Matrix cost_matrix(tracks_size, features_size); | |
build_cosine_distance(&cost_matrix); | |
// the index represents the track index | |
// the value represents the index of feature | |
Eigen::VectorXi assignment = assign(cost_matrix); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment