opencv has an implementation of max-flow algorithm (class GCGRAPH
in file gcgraph.hpp). It's available here.
Does anyone know which particular max-flow algorithm is implemented by this class?
opencv has an implementation of max-flow algorithm (class GCGRAPH
in file gcgraph.hpp). It's available here.
Does anyone know which particular max-flow algorithm is implemented by this class?
I am not 100% confident about this, but I believe that the algorithm is based on this research paper describing max-flow algorithms for computer vision. Specifically, Section 3 describes a new algorithm for computing maximum flows.
I haven't lined up every detail of the paper's algorithm with the implementation of the algorithm, but many details seem to match:
// grow S & T search trees, find an edge connecting them
.std::vector<Vtx*> orphans
seems to track in the implementation.I hope this helps!
© 2022 - 2024 — McMap. All rights reserved.