Home
last modified time | relevance | path

Searched refs:any_image_view (Results 1 – 17 of 17) sorted by relevance

/third_party/boost/boost/gil/extension/dynamic_image/
Dimage_view_factory.hpp173 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 …]
Dany_image_view.hpp74 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 …]
Dalgorithm.hpp46 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/
Ddynamic_image.rst24 // 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/
Ddynamic_image.rst.txt24 // 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/
Dwrite_view.hpp142 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/
Dget_pixel_type.hpp34 struct get_pixel_type<any_image_view<Views...>>
/third_party/boost/boost/gil/extension/io/targa/detail/
Dwrite.hpp167 void apply( const any_image_view< Views... >& views ) in apply()
/third_party/boost/boost/gil/extension/io/jpeg/detail/
Dwrite.hpp164 void apply( const any_image_view< Views... >& views ) in apply()
/third_party/boost/boost/gil/extension/io/bmp/detail/
Dwrite.hpp198 void apply( const any_image_view< Views... >& views ) in apply()
/third_party/boost/boost/gil/extension/io/png/detail/
Dwrite.hpp231 void apply( const any_image_view< Views... >& views ) in apply()
/third_party/boost/boost/gil/extension/io/pnm/detail/
Dwrite.hpp230 void apply( const any_image_view< Views... >& views ) in apply()
/third_party/boost/boost/gil/extension/io/tiff/detail/
Dwrite.hpp434 void apply( const any_image_view< Views... >& views ) in apply()
/third_party/boost/libs/gil/
DRELEASES.md35 - 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/
Dgradient.rst.txt840 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/
Dgradient.rst840 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/
Dsearchindex.js1 …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