Searched refs:boundary_option (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/boost/gil/extension/numeric/ |
D | convolve.hpp | 57 boundary_option option, in correlate_rows_impl() 82 if (option == boundary_option::output_ignore || option == boundary_option::output_zero) in correlate_rows_impl() 88 if (option == boundary_option::output_zero) in correlate_rows_impl() 98 if (option == boundary_option::output_zero) in correlate_rows_impl() 104 if (option == boundary_option::output_zero) in correlate_rows_impl() 115 if (option == boundary_option::extend_padded) in correlate_rows_impl() 122 else if (option == boundary_option::extend_zero) in correlate_rows_impl() 130 else if (option == boundary_option::extend_constant) 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() [all …]
|
D | algorithm.hpp | 256 enum class boundary_option enum 273 boundary_option option) in extend_row_impl() 277 if (option == boundary_option::extend_constant) in extend_row_impl() 304 else if (option == boundary_option::extend_zero) in extend_row_impl() 325 else if (option == boundary_option::extend_padded) in extend_row_impl() 362 boundary_option option in extend_row() 384 boundary_option option in extend_col() 407 boundary_option option in extend_boundary() 410 if (option == boundary_option::extend_padded) in extend_boundary()
|
/third_party/boost/libs/gil/test/extension/numeric/ |
D | extend_boundary.cpp | 133 auto output = gil::extend_row(src_view, 2, gil::boundary_option::extend_constant); in test_extend_row_with_constant() 146 auto output = gil::extend_row(src_view, 3, gil::boundary_option::extend_zero); in test_extend_row_with_zero() 158 auto output = gil::extend_row(src_sub_view, 1, gil::boundary_option::extend_padded); in test_extend_row_with_padded() 171 auto output = gil::extend_col(src_view, 1, gil::boundary_option::extend_constant); in test_extend_col_with_constant() 184 auto output = gil::extend_col(src_view, 2, gil::boundary_option::extend_zero); in test_extend_col_with_zero() 196 auto output = gil::extend_col(src_sub_view, 1, gil::boundary_option::extend_padded); in test_extend_col_with_padded() 209 auto output = gil::extend_boundary(src_view, 2, gil::boundary_option::extend_constant); in test_extend_img_with_constant() 222 auto output = gil::extend_boundary(src_view, 2, gil::boundary_option::extend_zero); in test_extend_img_with_zero() 234 auto output = gil::extend_boundary(src_sub_view, 1, gil::boundary_option::extend_padded); in test_extend_img_with_padded()
|
/third_party/boost/boost/gil/image_processing/ |
D | filter.hpp | 34 boundary_option option = boundary_option::extend_zero in box_filter() 64 boundary_option option = boundary_option::extend_zero in blur() 118 boundary_option::extend_constant in median_filter()
|
/third_party/boost/libs/gil/example/ |
D | convolve2d.cpp | 32 …detail::convolve_1d<gray32f_pixel_t>(const_view(img), kernel1, view(img_out), boundary_option::ext… in main()
|