Home
last modified time | relevance | path

Searched defs:GraphEdge (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dutil.hpp122 struct CV_EXPORTS GraphEdge struct
125 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
/external/opencv3/modules/cudaimgproc/src/
Dmssegmentation.cpp75 struct GraphEdge struct
77 GraphEdge() {} in GraphEdge() function
78 GraphEdge(int to_, int next_, const T& val_) : to(to_), next(next_), val(val_) {} in GraphEdge() argument
79 int to;
80 int next;
81 T val;