Feature: new linear_sum_assignment() algorithm #2858
pfeatherstone
started this conversation in
Ideas
Replies: 1 comment 6 replies
-
That's maybe what's already in dlib, I forget. There is the vanilla Hungarian algorithm which is O(n^4) and then there are variants like the one you mentioned which are O(n^3). Dlib uses one of the O(n^3) variants, probably the Jonker–Volgenant but at this point I don't remember :| |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Looking at scipy, there is a new algorithm that is up to 10X faster than Hungarian algorithm
https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.linear_sum_assignment.html
https://uk.mathworks.com/matlabcentral/fileexchange/26836-lapjv-jonker-volgenant-algorithm-for-linear-assignment-problem-v3-0
This would be cool
Beta Was this translation helpful? Give feedback.
All reactions