struct cv::videostab::FastMarchingMethod::DXY

struct DXY
{
    // fields

    float dist;
    int x;
    int y;

    // construction

    DXY();

    DXY(
        float _dist,
        int _x,
        int _y
        );

    // methods

    bool
    operator<(const DXY& dxy) const;
};