template struct cv::cudev::ThreshToZeroFunc

#include <functional.hpp>

template <typename T>
struct ThreshToZeroFunc: public cv::cudev::unary_function
{
    // fields

    T thresh;

    // methods

    __device__ __forceinline__ T
    operator()(typename TypeTraits<T>::parameter_type src) const;
};

Inherited Members

public:
    // typedefs

    typedef _Arg argument_type;
    typedef _Result result_type;