boost::gil::correlate_cols_fixed

Correlate 1D fixed‐size kernel along the columns of image

Synopsis

template<
    typename PixelAccum,
    typename SrcView,
    typename Kernel,
    typename DstView>
[[__always_inline__]]
void
correlate_cols_fixed(
    SrcView const& src_view,
    Kernel const& kernel,
    DstView const& dst_view,
    boundary_option option = boundary_option::extend_zero);

Template Parameters

Name

Description

PixelAccum

Specifies the data type which will be used for creating buffer container utilized for holding source image pixels after applying appropriate boundary manipulations.

SrcView

Models ImageViewConcept

Kernel

Specifies the type of 1D kernel which will be column correlated with source image.

DstView

Models MutableImageViewConcept

Parameters

Name

Description

option

Boundary options for image boundary extension

Created with MrDocs