Searched refs:dist_ (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
D | fast_marching_inl.hpp | 64 dist_.create(mask.size()); in run() 75 dist_(y,x) = 0.f; in run() 96 dist_(y,x) = inf_; in run() 101 dist_(y,x) = 0.f; in run() 131 … dist_(yn,xn) = std::min(std::min(solve(xn-1, yn, xn, yn-1), solve(xn+1, yn, xn, yn-1)), in run() 138 heapAdd(DXY(dist_(yn,xn),xn,yn)); in run() 143 if (dist_(yn,xn) < narrowBand_[i].dist) in run() 145 narrowBand_[i].dist = dist_(yn,xn); in run()
|
D | fast_marching.hpp | 81 Mat distanceMap() const { return dist_; } in distanceMap() 107 cv::Mat_<float> dist_; // distance map member in cv::videostab::FastMarchingMethod
|
/external/opencv3/modules/flann/include/opencv2/flann/ |
D | result_set.h | 293 dist_(dist), index_(index) in DistIndex() 298 … return (dist_ < dist_index.dist_) || ((dist_ == dist_index.dist_) && index_ < dist_index.index_); 300 DistanceType dist_; member 333 *dist = dist_index->dist_; 341 *dist = dist_index->dist_; 414 worst_distance_ = dist_indices_.rbegin()->dist_; in addPoint() 419 worst_distance_ = dist_indices_.rbegin()->dist_; in addPoint()
|
/external/opencv3/modules/videostab/src/ |
D | fast_marching.cpp | 57 float t1 = dist_(y1,x1); in solve() 60 float t2 = dist_(y2,x2); in solve() 77 sol = 1 + dist_(y2,x1); in solve()
|