GraphEdge          78 modules/cudaimgproc/src/mssegmentation.cpp     GraphEdge(int to_, int next_, const T& val_) : to(to_), next(next_), val(val_) {}
GraphEdge          89 modules/cudaimgproc/src/mssegmentation.cpp     typedef GraphEdge<T> Edge;
GraphEdge         124 modules/stitching/include/opencv2/stitching/detail/util.hpp     GraphEdge(int from, int to, float weight);
GraphEdge         125 modules/stitching/include/opencv2/stitching/detail/util.hpp     bool operator <(const GraphEdge& other) const { return weight < other.weight; }
GraphEdge         126 modules/stitching/include/opencv2/stitching/detail/util.hpp     bool operator >(const GraphEdge& other) const { return weight > other.weight; }
GraphEdge         132 modules/stitching/include/opencv2/stitching/detail/util.hpp inline GraphEdge::GraphEdge(int _from, int _to, float _weight) : from(_from), to(_to), weight(_weight) {}
GraphEdge         139 modules/stitching/include/opencv2/stitching/detail/util.hpp     void create(int num_vertices) { edges_.assign(num_vertices, std::list<GraphEdge>()); }
GraphEdge         146 modules/stitching/include/opencv2/stitching/detail/util.hpp     std::vector< std::list<GraphEdge> > edges_;
GraphEdge          60 modules/stitching/include/opencv2/stitching/detail/util_inl.hpp         std::list<GraphEdge>::const_iterator edge = edges_[i].begin();
GraphEdge          82 modules/stitching/include/opencv2/stitching/detail/util_inl.hpp         std::list<GraphEdge>::const_iterator edge = edges_[vertex].begin();
GraphEdge          55 modules/stitching/src/motion_estimators.cpp     void operator ()(const GraphEdge &edge) { dists[edge.to] = dists[edge.from] + 1; }
GraphEdge          65 modules/stitching/src/motion_estimators.cpp     void operator ()(const GraphEdge &edge)
GraphEdge         816 modules/stitching/src/motion_estimators.cpp     std::vector<GraphEdge> edges;
GraphEdge         827 modules/stitching/src/motion_estimators.cpp             edges.push_back(GraphEdge(i, j, conf));
GraphEdge         836 modules/stitching/src/motion_estimators.cpp     sort(edges.begin(), edges.end(), std::greater<GraphEdge>());
GraphEdge          97 modules/stitching/src/util.cpp     edges_[from].push_back(GraphEdge(from, to, weight));