Skip to content

Instantly share code, notes, and snippets.

@imcj
Last active April 14, 2024 04:20
Show Gist options
  • Save imcj/34afcd6245cec28161ac7574881489b1 to your computer and use it in GitHub Desktop.
Save imcj/34afcd6245cec28161ac7574881489b1 to your computer and use it in GitHub Desktop.
The deep sort comments
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