Home
last modified time | relevance | path

Searched refs:extend_zero (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/boost/gil/extension/numeric/
Dconvolve.hpp122 else if (option == boundary_option::extend_zero) in correlate_rows_impl()
198 boundary_option option = boundary_option::extend_zero) in correlate_rows()
216 boundary_option option = boundary_option::extend_zero) in correlate_cols()
234 boundary_option option = boundary_option::extend_zero) in convolve_rows()
251 boundary_option option = boundary_option::extend_zero) in convolve_cols()
269 boundary_option option = boundary_option::extend_zero) in correlate_rows_fixed()
287 boundary_option option = boundary_option::extend_zero) in correlate_cols_fixed()
305 boundary_option option = boundary_option::extend_zero) in convolve_rows_fixed()
322 boundary_option option = boundary_option::extend_zero) in convolve_cols_fixed()
343 boundary_option option = boundary_option::extend_zero) in convolve_1d()
Dalgorithm.hpp261 extend_zero, /// assume the source boundaries to be zero enumerator
304 else if (option == boundary_option::extend_zero) in extend_row_impl()
/third_party/boost/libs/gil/test/extension/numeric/
Dextend_boundary.cpp146 auto output = gil::extend_row(src_view, 3, gil::boundary_option::extend_zero); in test_extend_row_with_zero()
184 auto output = gil::extend_col(src_view, 2, gil::boundary_option::extend_zero); in test_extend_col_with_zero()
222 auto output = gil::extend_boundary(src_view, 2, gil::boundary_option::extend_zero); in test_extend_img_with_zero()
/third_party/boost/boost/gil/image_processing/
Dfilter.hpp34 boundary_option option = boundary_option::extend_zero in box_filter()
64 boundary_option option = boundary_option::extend_zero in blur()
/third_party/boost/libs/gil/example/
Dconvolve2d.cpp32 …onvolve_1d<gray32f_pixel_t>(const_view(img), kernel1, view(img_out), boundary_option::extend_zero); in main()