boost::gil::convolve_rows_fixed
Convolve 1D fixed‐size kernel along the rows of image
Synopsis
template<
typename PixelAccum,
typename SrcView,
typename Kernel,
typename DstView>
[[__always_inline__]]
void
convolve_rows_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 row convolved with source image. |
DstView |
Models MutableImageViewConcept |
Parameters
Name |
Description |
option |
Boundary options for image boundary extension |
Created with MrDocs