boost::gil::transform_pixels

transform_pixels overloads

Synopses

Declared in <boost/gil/algorithm.hpp>

std::transform for image views

template<
    typename View1,
    typename View2,
    typename F>
[[__always_inline__]]
F
transform_pixels(
    View1 const& src,
    View2 const& dst,
    F fun);

transform_pixels with two sources

template<
    typename View1,
    typename View2,
    typename View3,
    typename F>
[[__always_inline__]]
F
transform_pixels(
    View1 const& src1,
    View2 const& src2,
    View3 const& dst,
    F fun);

Created with MrDocs