/third_party/boost/boost/gil/extension/dynamic_image/ |
D | image_view_factory.hpp | 173 auto flipped_up_down_view(any_image_view<Views...> const& src) in flipped_up_down_view() 174 -> typename dynamic_y_step_type<any_image_view<Views...>>::type in flipped_up_down_view() 176 using result_view_t = typename dynamic_y_step_type<any_image_view<Views...>>::type; in flipped_up_down_view() 184 auto flipped_left_right_view(any_image_view<Views...> const& src) in flipped_left_right_view() 185 -> typename dynamic_x_step_type<any_image_view<Views...>>::type in flipped_left_right_view() 187 using result_view_t = typename dynamic_x_step_type<any_image_view<Views...>>::type; in flipped_left_right_view() 195 auto transposed_view(const any_image_view<Views...>& src) in transposed_view() 196 -> typename dynamic_xy_step_transposed_type<any_image_view<Views...>>::type in transposed_view() 198 using result_view_t = typename dynamic_xy_step_transposed_type<any_image_view<Views...>>::type; in transposed_view() 206 auto rotated90cw_view(const any_image_view<Views...>& src) in rotated90cw_view() [all …]
|
D | any_image_view.hpp | 74 class any_image_view : public variant2::variant<Views...> class 79 using const_t = detail::views_get_const_t<any_image_view>; 85 any_image_view() = default; 86 any_image_view(any_image_view const& view) : parent_t((parent_t const&)view) {} in any_image_view() function in boost::gil::any_image_view 89 explicit any_image_view(View const& view) : parent_t(view) {} in any_image_view() function in boost::gil::any_image_view 92 any_image_view(any_image_view<OtherViews...> const& view) in any_image_view() function in boost::gil::any_image_view 96 any_image_view& operator=(any_image_view const& view) in operator =() 103 any_image_view& operator=(View const& view) in operator =() 110 any_image_view& operator=(any_image_view<OtherViews...> const& view) in operator =() 128 struct dynamic_x_step_type<any_image_view<Views...>> [all …]
|
D | algorithm.hpp | 46 bool equal_pixels(any_image_view<Types...> const& src, View const& dst) in equal_pixels() 57 bool equal_pixels(View const& src, any_image_view<Types...> const& dst) in equal_pixels() 68 bool equal_pixels(any_image_view<Types1...> const& src, any_image_view<Types2...> const& dst) in equal_pixels() 91 void copy_pixels(any_image_view<Types...> const& src, View const& dst) in copy_pixels() 100 void copy_pixels(View const& src, any_image_view<Types...> const& dst) in copy_pixels() 109 void copy_pixels(any_image_view<Types1...> const& src, any_image_view<Types2...> const& dst) in copy_pixels() 122 void copy_and_convert_pixels(any_image_view<Types...> const& src, View const& dst, CC cc) in copy_and_convert_pixels() 132 void copy_and_convert_pixels(any_image_view<Types...> const& src, View const& dst) in copy_and_convert_pixels() 143 void copy_and_convert_pixels(View const& src, any_image_view<Types...> const& dst, CC cc) in copy_and_convert_pixels() 153 void copy_and_convert_pixels(View const& src, any_image_view<Types...> const& dst) in copy_and_convert_pixels() [all …]
|
/third_party/boost/libs/gil/doc/design/ |
D | dynamic_image.rst | 24 // Create any_image class (or any_image_view) class with a set of allowed images 28 typedef any_image_view<rgb8_view_t, cmyk16_planar_view_t> AV; 31 typedef any_image_view<rgb8c_view_t, cmyk16c_planar_view_t>> CAV; 35 typedef any_image_view<rgb8_step_view_t, cmyk16_planar_step_view_t> SAV; 47 The ``any_image`` and ``any_image_view`` subclass from Boost.Variant2 ``variant`` class, 50 GIL ``any_image_view`` and ``any_image`` are subclasses of ``variant``: 55 class any_image_view : public variant<ImageViewTypes...> 64 any_image_view(); 65 template <typename T> explicit any_image_view(const T& obj); 66 any_image_view(const any_image_view& v); [all …]
|
/third_party/boost/libs/gil/doc/html/_sources/design/ |
D | dynamic_image.rst.txt | 24 // Create any_image class (or any_image_view) class with a set of allowed images 28 typedef any_image_view<rgb8_view_t, cmyk16_planar_view_t> AV; 31 typedef any_image_view<rgb8c_view_t, cmyk16c_planar_view_t>> CAV; 35 typedef any_image_view<rgb8_step_view_t, cmyk16_planar_step_view_t> SAV; 47 The ``any_image`` and ``any_image_view`` subclass from Boost.Variant2 ``variant`` class, 50 GIL ``any_image_view`` and ``any_image`` are subclasses of ``variant``: 55 class any_image_view : public variant<ImageViewTypes...> 64 any_image_view(); 65 template <typename T> explicit any_image_view(const T& obj); 66 any_image_view(const any_image_view& v); [all …]
|
/third_party/boost/boost/gil/io/ |
D | write_view.hpp | 142 void write_view(Writer& writer, any_image_view<Views...> const& view, in write_view() 159 Device& device, any_image_view<Views...> const& views, FormatTag const& tag, in write_view() 177 String const& file_name, any_image_view<Views...> const& views, FormatTag const& tag, in write_view() 197 …Device& device, any_image_view<Views...> const& views, image_write_info<FormatTag, Log> const& inf… in write_view() 215 …String const& file_name, any_image_view<Views...> const& views, image_write_info<FormatTag, Log> c… in write_view()
|
/third_party/boost/boost/gil/extension/toolbox/metafunctions/ |
D | get_pixel_type.hpp | 34 struct get_pixel_type<any_image_view<Views...>>
|
/third_party/boost/boost/gil/extension/io/targa/detail/ |
D | write.hpp | 167 void apply( const any_image_view< Views... >& views ) in apply()
|
/third_party/boost/boost/gil/extension/io/jpeg/detail/ |
D | write.hpp | 164 void apply( const any_image_view< Views... >& views ) in apply()
|
/third_party/boost/boost/gil/extension/io/bmp/detail/ |
D | write.hpp | 198 void apply( const any_image_view< Views... >& views ) in apply()
|
/third_party/boost/boost/gil/extension/io/png/detail/ |
D | write.hpp | 231 void apply( const any_image_view< Views... >& views ) in apply()
|
/third_party/boost/boost/gil/extension/io/pnm/detail/ |
D | write.hpp | 230 void apply( const any_image_view< Views... >& views ) in apply()
|
/third_party/boost/boost/gil/extension/io/tiff/detail/ |
D | write.hpp | 434 void apply( const any_image_view< Views... >& views ) in apply()
|
/third_party/boost/libs/gil/ |
D | RELEASES.md | 35 - New member function `size()` in `any_image_view` class ([PR #456](https://github.com/boostorg/gil… 270 - In `image`, `image_view`, `any_image`, `any_image_view`: 281 - In `locator`, `image`, `image_view`, `any_image` and `any_image_view`:
|
/third_party/boost/libs/gil/doc/html/_sources/tutorial/ |
D | gradient.rst.txt | 840 instantiated image view, ``any_image_view``. The mechanisms are in 879 void x_luminosity_gradient(const any_image_view<SrcViews>& src, const DstView& dst) 884 ``any_image_view<SrcViews>`` is the image view variant. It is 926 ``any_image_view<Views>`` where ``Views`` enumerates four views 928 returns a ``any_image_view`` of the four read-only view types, etc.
|
/third_party/boost/libs/gil/doc/tutorial/ |
D | gradient.rst | 840 instantiated image view, ``any_image_view``. The mechanisms are in 879 void x_luminosity_gradient(const any_image_view<SrcViews>& src, const DstView& dst) 884 ``any_image_view<SrcViews>`` is the image view variant. It is 926 ``any_image_view<Views>`` where ``Views`` enumerates four views 928 returns a ``any_image_view`` of the four read-only view types, etc.
|
/third_party/boost/libs/gil/doc/html/ |
D | searchindex.js | 1 …oth:[1,2,5,6,8,10,13,14,19,24,28],another_iter:14,any_imag:[6,24,28],any_image_view:[6,28],any_pix… property
|