Home
last modified time | relevance | path

Searched refs:dst_view (Results 1 – 21 of 21) sorted by relevance

/third_party/boost/boost/gil/extension/numeric/
Dconvolve.hpp56 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 …]
Dalgorithm.hpp227 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/
Dthreshold.hpp38 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 …]
Dfilter.hpp30 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/
Dread.hpp57 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 …]
Dscanline_read.hpp374 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/
Dread.hpp84 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/
Dmedian_filter.cpp50 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()
Dbox_filter.cpp50 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/
Dconvolve_2d.cpp50 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/
Dread.hpp94 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()
Dscanline_read.hpp314 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/
Dtest_fixture.hpp46 void operator()(typename Image::view_t& dst_view) in operator ()()
50 dst_view[i] = pixel_value_; in operator ()()
/third_party/skia/modules/canvaskit/
DWasmCommon.h95 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/
Dread.hpp43 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/
Dimgui_impl_wgpu.cpp497 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/
Dgsth264parser.c290 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/
Dwarnings.txt9 …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…
Dio.rst583 void apply( const View& dst_view )
/third_party/boost/libs/gil/doc/html/
Dsearchindex.js1 …,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/
Dio.rst.txt583 void apply( const View& dst_view )