Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/videostab/
H A Dfast_marching.hpp86 struct DXY struct in cv::videostab::FastMarchingMethod
88 float dist;
89 int x, y;
91 DXY() : dist(0), x(0), y(0) {} in DXY() argument
92 DXY(float _dist, int _x, int _y) : dist(_dist), x(_x), y(_y) {} in DXY() argument
93 bool operator <(const DXY &dxy) const { return dist < dxy.dist; } in operator <()