template struct cv::cudev::HistogramBody

#include <reduction.hpp>

template <
    int BIN_COUNT,
    class SrcPtr
    >
struct HistogramBody
{
    // fields

    SrcPtr src;

    // methods

    template <typename T>
    __host__ void
    assignTo(
        GpuMat_<T>& dst,
        Stream& stream = Stream::Null()
        ) const;
};