Searched defs:GraphEdge (Results 1 – 2 of 2) sorted by relevance
122 struct CV_EXPORTS GraphEdge struct125 bool operator <(const GraphEdge& other) const { return weight < other.weight; } in operator <()126 bool operator >(const GraphEdge& other) const { return weight > other.weight; } in operator >()128 int from, to;129 float weight;132 inline GraphEdge::GraphEdge(int _from, int _to, float _weight) : from(_from), to(_to), weight(_weig… in GraphEdge() function in cv::detail::GraphEdge
75 struct GraphEdge struct77 GraphEdge() {} in GraphEdge() function78 GraphEdge(int to_, int next_, const T& val_) : to(to_), next(next_), val(val_) {} in GraphEdge() argument79 int to;80 int next;81 T val;