boost::gil::cumulative_histogram

cumulative_histogram overloads

Synopses

Declared in <boost/gil/histogram.hpp>

Overload for std::vector of cumulative_histogram

template<typename T>
std::vector<T>
cumulative_histogram(std::vector<T>& hist);

Optionally overload this function with any external histogram class

template<typename Container>
Container
cumulative_histogram(Container const&);
template<typename... T>
histogram<T...>
cumulative_histogram(histogram<T...> const& hist);

Overload for std::array of cumulative_histogram

template<
    typename T,
    std::size_t N>
std::array<T, N>
cumulative_histogram(std::array<T, N>& histogram);

Overload for std::map of cumulative_histogram

template<
    typename T1,
    typename T2>
std::map<T1, T2>
cumulative_histogram(std::map<T1, T2>& histogram);

Template Parameters

Name

Description

Container

Input histogram container

Created with MrDocs