/third_party/boost/boost/gil/extension/numeric/ |
D | convolve.hpp | 56 DstView const& dst_view, in correlate_rows_impl() argument 60 BOOST_ASSERT(src_view.dimensions() == dst_view.dimensions()); in correlate_rows_impl() 66 view_multiplies_scalar<PixelAccum>(src_view, *kernel.begin(), dst_view); in correlate_rows_impl() 89 fill_pixels(dst_view, dst_zero); in correlate_rows_impl() 97 typename DstView::x_iterator it_dst = dst_view.row_begin(y); in correlate_rows_impl() 145 dst_view.row_begin(y)); in correlate_rows_impl() 197 DstView const& dst_view, in correlate_rows() argument 201 src_view, kernel, dst_view, option, detail::correlator_n<PixelAccum>(kernel.size())); in correlate_rows() 215 DstView const& dst_view, in correlate_cols() argument 219 transposed_view(src_view), kernel, transposed_view(dst_view), option); in correlate_cols() [all …]
|
D | algorithm.hpp | 227 void view_multiplies_scalar(SrcView const& src_view, Scalar const& scalar, DstView const& dst_view) in view_multiplies_scalar() argument 230 BOOST_ASSERT(src_view.dimensions() == dst_view.dimensions()); in view_multiplies_scalar() 239 typename DstView::x_iterator it_dst = dst_view.row_begin(y); in view_multiplies_scalar()
|
/third_party/boost/boost/gil/image_processing/ |
D | threshold.hpp | 38 void threshold_impl(SrcView const& src_view, DstView const& dst_view, Operator const& threshold_op) in threshold_impl() argument 52 typename DstView::x_iterator dst_it = dst_view.row_begin(y); in threshold_impl() 110 DstView const& dst_view, in threshold_binary() argument 122 detail::threshold_impl<source_channel_t, result_channel_t>(src_view, dst_view, in threshold_binary() 129 detail::threshold_impl<source_channel_t, result_channel_t>(src_view, dst_view, in threshold_binary() 149 DstView const& dst_view, in threshold_binary() argument 158 threshold_binary(src_view, dst_view, threshold_value, max_value, direction); in threshold_binary() 175 DstView const& dst_view, in threshold_truncate() argument 191 detail::threshold_impl<source_channel_t, result_channel_t>(src_view, dst_view, in threshold_truncate() 198 detail::threshold_impl<source_channel_t, result_channel_t>(src_view, dst_view, in threshold_truncate() [all …]
|
D | filter.hpp | 30 DstView const& dst_view, in box_filter() argument 55 >(src_view, kernel, dst_view, option); in box_filter() 61 DstView const& dst_view, in blur() argument 67 box_filter(src_view, dst_view, kernel_size, anchor, true, option); in blur() 74 void filter_median_impl(SrcView const& src_view, DstView const& dst_view, std::size_t kernel_size) in filter_median_impl() argument 86 typename DstView::x_iterator dst_it = dst_view.row_begin(y); in filter_median_impl() 106 void median_filter(SrcView const& src_view, DstView const& dst_view, std::size_t kernel_size) in median_filter() argument 132 nth_channel_view(dst_view, channel), in median_filter()
|
/third_party/boost/boost/gil/extension/io/tiff/detail/ |
D | read.hpp | 57 void read_plane( const View& dst_view in read_plane() 64 plane_t plane = kth_channel_view<K>( dst_view ); in read_plane() 68 plane_recursion< K - 1 >::read_plane( dst_view, p ); in read_plane() 140 void apply( View& dst_view ) in apply() argument 157 case 1: { read_palette_image< gray1_image_t >( dst_view ); break; } in apply() 158 case 2: { read_palette_image< gray2_image_t >( dst_view ); break; } in apply() 159 case 4: { read_palette_image< gray4_image_t >( dst_view ); break; } in apply() 160 case 8: { read_palette_image< gray8_image_t >( dst_view ); break; } in apply() 161 case 16: { read_palette_image< gray16_image_t >( dst_view ); break; } in apply() 191 plane_recursion< num_channels< View >::value - 1 >::read_plane( dst_view in apply() [all …]
|
D | scanline_read.hpp | 374 dst_view_t dst_view = interleaved_view( this->_info._width in read_n_bits_row() local 382 typename dst_view_t::x_iterator dst_it = dst_view.row_begin( 0 ); in read_n_bits_row()
|
/third_party/boost/boost/gil/extension/io/targa/detail/ |
D | read.hpp | 84 void apply( const View& dst_view ) in apply() argument 118 read_data< bgr8_view_t >( flipped_up_down_view( dst_view ) ); in apply() 122 read_data< bgr8_view_t >( dst_view ); in apply() 133 read_data< bgra8_view_t >( flipped_up_down_view( dst_view ) ); in apply() 137 read_data< bgra8_view_t >( dst_view ); in apply() 169 read_rle_data< bgr8_view_t >( flipped_up_down_view( dst_view ) ); in apply() 173 read_rle_data< bgr8_view_t >( dst_view ); in apply() 181 read_rle_data< bgra8_view_t >( flipped_up_down_view( dst_view ) ); in apply() 185 read_rle_data< bgra8_view_t >( dst_view ); in apply()
|
/third_party/boost/libs/gil/test/core/image_processing/ |
D | median_filter.cpp | 50 gil::gray8_view_t dst_view(temp_view); in test_median_filter_with_kernel_size_3() local 52 gil::median_filter(src_view, dst_view, 3); in test_median_filter_with_kernel_size_3() 57 BOOST_TEST(gil::equal_pixels(out_view, dst_view)); in test_median_filter_with_kernel_size_3()
|
D | box_filter.cpp | 50 gil::gray8_view_t dst_view(temp_view); in test_box_filter_with_default_parameters() local 52 gil::box_filter(src_view, dst_view, 3); in test_box_filter_with_default_parameters() 57 BOOST_TEST(gil::equal_pixels(out_view, dst_view)); in test_box_filter_with_default_parameters()
|
/third_party/boost/libs/gil/test/extension/numeric/ |
D | convolve_2d.cpp | 50 gil::gray8_view_t dst_view(temp_view); in test_convolve_2d_with_normalized_mean_filter() local 55 gil::detail::convolve_2d(src_view, kernel, dst_view); in test_convolve_2d_with_normalized_mean_filter() 60 BOOST_TEST(gil::equal_pixels(out_view, dst_view)); in test_convolve_2d_with_normalized_mean_filter()
|
/third_party/boost/boost/gil/extension/io/bmp/detail/ |
D | read.hpp | 94 void apply( const View& dst_view ) in apply() argument 135 >(dst_view); in apply() 148 read_palette_image_rle( dst_view ); in apply() 161 >(dst_view); in apply() 183 read_palette_image_rle( dst_view ); in apply() 193 > ( dst_view ); in apply() 211 read_data_15( dst_view ); in apply() 220 read_data< bgr8_view_t >( dst_view ); in apply() 229 read_data< bgra8_view_t >( dst_view ); in apply()
|
D | scanline_read.hpp | 314 dst_view_t dst_view = interleaved_view( this->_info._width in read_bit_row() local 322 typename dst_view_t::x_iterator dst_it = dst_view.row_begin( 0 ); in read_bit_row() 365 dst_view_t dst_view = interleaved_view( this->_info._width in read_15_bits_row() local 371 typename dst_view_t::x_iterator dst_it = dst_view.row_begin( 0 ); in read_15_bits_row()
|
/third_party/boost/libs/gil/test/extension/dynamic_image/ |
D | test_fixture.hpp | 46 void operator()(typename Image::view_t& dst_view) in operator ()() 50 dst_view[i] = pixel_value_; in operator ()()
|
/third_party/skia/modules/canvaskit/ |
D | WasmCommon.h | 95 auto dst_view = emscripten::val(typed_memory_view(len, data)); in JSSpan() local 96 dst_view.call<void>("set", src); in JSSpan()
|
/third_party/boost/boost/gil/extension/io/raw/detail/ |
D | read.hpp | 43 this->_cc_policy.read( build.begin(), build.end(), dst_view.begin() ); \ 97 void apply( const View& dst_view ) in apply() argument
|
/third_party/skia/third_party/externals/imgui/backends/ |
D | imgui_impl_wgpu.cpp | 497 WGPUImageCopyTexture dst_view = {}; in ImGui_ImplWGPU_CreateFontsTexture() local 498 dst_view.texture = g_resources.FontTexture; in ImGui_ImplWGPU_CreateFontsTexture() 499 dst_view.mipLevel = 0; in ImGui_ImplWGPU_CreateFontsTexture() 500 dst_view.origin = { 0, 0, 0 }; in ImGui_ImplWGPU_CreateFontsTexture() 501 dst_view.aspect = WGPUTextureAspect_All; in ImGui_ImplWGPU_CreateFontsTexture() 507 …wgpuQueueWriteTexture(g_defaultQueue, &dst_view, pixels, (uint32_t)(width * size_pp * height), &la… in ImGui_ImplWGPU_CreateFontsTexture()
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/ |
D | gsth264parser.c | 290 GstH264SPSExtMVCView *const dst_view = &dst_mvc->view[i]; in gst_h264_sps_mvc_copy() local 293 dst_view->view_id = src_view->view_id; in gst_h264_sps_mvc_copy() 295 dst_view->num_anchor_refs_l0 = src_view->num_anchor_refs_l0; in gst_h264_sps_mvc_copy() 296 for (j = 0; j < dst_view->num_anchor_refs_l0; j++) in gst_h264_sps_mvc_copy() 297 dst_view->anchor_ref_l0[j] = src_view->anchor_ref_l0[j]; in gst_h264_sps_mvc_copy() 299 dst_view->num_anchor_refs_l1 = src_view->num_anchor_refs_l1; in gst_h264_sps_mvc_copy() 300 for (j = 0; j < dst_view->num_anchor_refs_l1; j++) in gst_h264_sps_mvc_copy() 301 dst_view->anchor_ref_l1[j] = src_view->anchor_ref_l1[j]; in gst_h264_sps_mvc_copy() 303 dst_view->num_non_anchor_refs_l0 = src_view->num_non_anchor_refs_l0; in gst_h264_sps_mvc_copy() 304 for (j = 0; j < dst_view->num_non_anchor_refs_l0; j++) in gst_h264_sps_mvc_copy() [all …]
|
/third_party/boost/libs/gil/doc/ |
D | warnings.txt | 9 …of boost::gil::threshold_binary(SrcView const &src_view, DstView const &dst_view, typename channel… 10 …of boost::gil::threshold_binary(SrcView const &src_view, DstView const &dst_view, typename channel…
|
D | io.rst | 583 void apply( const View& dst_view )
|
/third_party/boost/libs/gil/doc/html/ |
D | searchindex.js | 1 …,2,7,8,10,24,28],dst_channel_t:28,dst_it:28,dst_pixel:28,dst_row_byt:28,dst_view:24,dstchannel:1,d… property
|
/third_party/boost/libs/gil/doc/html/_sources/ |
D | io.rst.txt | 583 void apply( const View& dst_view )
|