Searched defs:DXY (Results 1 – 1 of 1) sorted by relevance
86 struct DXY struct in cv::videostab::FastMarchingMethod88 float dist;89 int x, y;91 DXY() : dist(0), x(0), y(0) {} in DXY() argument92 DXY(float _dist, int _x, int _y) : dist(_dist), x(_x), y(_y) {} in DXY() argument93 bool operator <(const DXY &dxy) const { return dist < dxy.dist; } in operator <()