Searched refs:convolve_2d (Results 1 – 11 of 11) sorted by relevance
/third_party/boost/libs/gil/example/ |
D | sobel_scharr.cpp | 29 gil::detail::convolve_2d(input, gil::generate_dx_sobel(1), dx); in main() 30 gil::detail::convolve_2d(input, gil::generate_dy_sobel(1), dy); in main() 34 gil::detail::convolve_2d(input, gil::generate_dx_scharr(1), dx); in main() 35 gil::detail::convolve_2d(input, gil::generate_dy_scharr(1), dy); in main()
|
D | convolve2d.cpp | 22 detail::convolve_2d(view(img), kernel, view(img_out1)); in main()
|
D | hessian.cpp | 177 gil::detail::convolve_2d(smoothed, scharr_x, x_gradient); in main() 179 gil::detail::convolve_2d(smoothed, scharr_y, y_gradient); in main()
|
D | harris.cpp | 174 gil::detail::convolve_2d(smoothed, scharr_x, x_gradient); in main() 176 gil::detail::convolve_2d(smoothed, scharr_y, y_gradient); in main()
|
/third_party/boost/boost/gil/image_processing/ |
D | numeric.hpp | 293 detail::convolve_2d(dx, sobel_x, ddxx); in compute_hessian_entries() 294 detail::convolve_2d(dx, sobel_y, dxdy); in compute_hessian_entries() 295 detail::convolve_2d(dy, sobel_y, ddyy); in compute_hessian_entries()
|
D | threshold.hpp | 424 convolve_2d(src_view, kernel, temp_view); in threshold_adaptive()
|
/third_party/boost/libs/gil/test/extension/numeric/ |
D | convolve_2d.cpp | 55 gil::detail::convolve_2d(src_view, kernel, dst_view); in test_convolve_2d_with_normalized_mean_filter()
|
D | CMakeLists.txt | 14 convolve_2d
|
D | Jamfile | 18 run convolve_2d.cpp ;
|
/third_party/boost/boost/gil/extension/numeric/ |
D | convolve.hpp | 394 void convolve_2d(SrcView const& src_view, Kernel const& kernel, DstView const& dst_view) in convolve_2d() function
|
/third_party/boost/libs/gil/ |
D | RELEASES.md | 70 - GSoC 2019: Implementation of 2D convolution as new function `convolve_2d` ([PR #367](https://gith…
|