template struct cv::cudev::direction_func

#include <functional.hpp>

template <
    typename T,
    bool angleInDegrees
    >
struct direction_func: public cv::cudev::binary_function
{
    // methods

    __device__ T
    operator()(
        T x,
        T y
        ) const;
};

Inherited Members

public:
    // typedefs

    typedef _Arg1 first_argument_type;
    typedef _Result result_type;
    typedef _Arg2 second_argument_type;