struct cv::detail::GraphEdge
#include <util.hpp> struct GraphEdge { // fields int from; int to; float weight; // construction GraphEdge( int from, int to, float weight ); // methods bool operator<(const GraphEdge& other) const; bool operator>(const GraphEdge& other) const; };