boost::gil::fill_histogram

Overload this function to provide support for boost::gil::histogram or any other external histogram

Synopsis

Declared in <boost/gil/histogram.hpp>

template<
    typename SrcView,
    typename Container>
void
fill_histogram(
    SrcView const&,
    Container&);

Description

Example :

histogram<int> h;
fill_histogram(view(img), h);

Template Parameters

Name

Description

SrcView

Input image view

Container

Input histogram container

Created with MrDocs