// // Copyright 2005-2007 Adobe Systems Incorporated // // Distributed under the Boost Software License, Version 1.0 // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt // #ifndef BOOST_GIL_IMAGE_VIEW_FACTORY_HPP #define BOOST_GIL_IMAGE_VIEW_FACTORY_HPP #include #include #include #include #include #include #include #include #include #include /// Methods for creating shallow image views from raw pixel data or from other image views - /// flipping horizontally or vertically, axis-aligned rotation, a subimage, subsampled /// or n-th channel image view. Derived image views are shallow copies and are fast to construct. /// \defgroup ImageViewConstructors Image View From Raw Data /// \ingroup ImageViewAlgorithm /// \brief Methods for constructing image views from raw data and for getting raw data from views /// \defgroup ImageViewTransformations Image View Transformations /// \ingroup ImageViewAlgorithm /// \brief Methods for constructing one image view from another namespace boost { namespace gil { struct default_color_converter; template struct transposed_type; /// \brief Returns the type of a view that has a dynamic step along both X and Y /// \ingroup ImageViewTransformations template struct dynamic_xy_step_type : dynamic_y_step_type::type> {}; /// \brief Returns the type of a transposed view that has a dynamic step along both X and Y /// \ingroup ImageViewTransformations template struct dynamic_xy_step_transposed_type : dynamic_xy_step_type::type> {}; /// \ingroup ImageViewConstructors /// \brief Constructing image views from raw interleaved pixel data template typename type_from_x_iterator::view_t interleaved_view(std::size_t width, std::size_t height, Iterator pixels, std::ptrdiff_t rowsize_in_bytes) { using RView = typename type_from_x_iterator::view_t; return RView(width, height, typename RView::locator(pixels, rowsize_in_bytes)); } /// \ingroup ImageViewConstructors /// \brief Constructing image views from raw interleaved pixel data template auto interleaved_view(point dim, Iterator pixels, std::ptrdiff_t rowsize_in_bytes) -> typename type_from_x_iterator::view_t { using RView = typename type_from_x_iterator::view_t; return RView(dim, typename RView::locator(pixels, rowsize_in_bytes)); } ///////////////////////////// // interleaved_view_get_raw_data, planar_view_get_raw_data - return pointers to the raw data (the channels) of a basic homogeneous view. ///////////////////////////// namespace detail { template struct channel_pointer_type_impl; template struct channel_pointer_type_impl { using type = typename channel_type::type *; }; template struct channel_pointer_type_impl { using type = const typename channel_type::type *; }; template struct channel_pointer_type : public channel_pointer_type_impl::value> {}; } // namespace detail /// \ingroup ImageViewConstructors /// \brief Returns C pointer to the the channels of an interleaved homogeneous view. template typename detail::channel_pointer_type::type interleaved_view_get_raw_data(const HomogeneousView& view) { static_assert(!is_planar::value && view_is_basic::value, ""); static_assert(std::is_pointer::value, ""); return &gil::at_c<0>(view(0,0)); } /// \ingroup ImageViewConstructors /// \brief Returns C pointer to the the channels of a given color plane of a planar homogeneous view. template typename detail::channel_pointer_type::type planar_view_get_raw_data(const HomogeneousView& view, int plane_index) { static_assert(is_planar::value && view_is_basic::value, ""); return dynamic_at_c(view.row_begin(0),plane_index); } /// \defgroup ImageViewTransformationsColorConvert color_converted_view /// \ingroup ImageViewTransformations /// \brief Color converted view of another view /// \ingroup ImageViewTransformationsColorConvert PixelDereferenceAdaptorModel /// \brief Function object that given a source pixel, returns it converted to a given color space and channel depth. Models: PixelDereferenceAdaptorConcept /// /// Useful in constructing a color converted view over a given image view template // const_reference to the source pixel and destination pixel value class color_convert_deref_fn : public deref_base, DstP, DstP, const DstP&, SrcConstRefP, DstP, false> { private: CC _cc; // color-converter public: color_convert_deref_fn() {} color_convert_deref_fn(CC cc_in) : _cc(cc_in) {} DstP operator()(SrcConstRefP srcP) const { DstP dstP; _cc(srcP,dstP); return dstP; } }; namespace detail { // Add color converter upon dereferencing template struct _color_converted_view_type { private: using deref_t = color_convert_deref_fn; using add_ref_t = typename SrcView::template add_deref; public: using type = typename add_ref_t::type; static type make(const SrcView& sv,CC cc) {return add_ref_t::make(sv,deref_t(cc));} }; // If the Src view has the same pixel type as the target, there is no need for color conversion template struct _color_converted_view_type { using type = SrcView; static type make(const SrcView& sv,CC) {return sv;} }; } // namespace detail /// \brief Returns the type of a view that does color conversion upon dereferencing its pixels /// \ingroup ImageViewTransformationsColorConvert template struct color_converted_view_type : public detail::_color_converted_view_type { GIL_CLASS_REQUIRE(DstP, boost::gil, MutablePixelConcept)//why does it have to be mutable??? }; /// \ingroup ImageViewTransformationsColorConvert /// \brief view of a different color space with a user defined color-converter template inline typename color_converted_view_type::type color_converted_view(const View& src,CC cc) { return color_converted_view_type::make(src,cc); } /// \ingroup ImageViewTransformationsColorConvert /// \brief overload of generic color_converted_view with the default color-converter template inline typename color_converted_view_type::type color_converted_view(const View& src) { return color_converted_view(src,default_color_converter()); } /// \defgroup ImageViewTransformationsFlipUD flipped_up_down_view /// \ingroup ImageViewTransformations /// \brief view of a view flipped up-to-down /// \ingroup ImageViewTransformationsFlipUD template inline typename dynamic_y_step_type::type flipped_up_down_view(const View& src) { using RView = typename dynamic_y_step_type::type; return RView(src.dimensions(),typename RView::xy_locator(src.xy_at(0,src.height()-1),-1)); } /// \defgroup ImageViewTransformationsFlipLR flipped_left_right_view /// \ingroup ImageViewTransformations /// \brief view of a view flipped left-to-right /// \ingroup ImageViewTransformationsFlipLR template inline typename dynamic_x_step_type::type flipped_left_right_view(const View& src) { using RView = typename dynamic_x_step_type::type; return RView(src.dimensions(),typename RView::xy_locator(src.xy_at(src.width()-1,0),-1,1)); } /// \defgroup ImageViewTransformationsTransposed transposed_view /// \ingroup ImageViewTransformations /// \brief view of a view transposed /// \ingroup ImageViewTransformationsTransposed template inline typename dynamic_xy_step_transposed_type::type transposed_view(const View& src) { using RView = typename dynamic_xy_step_transposed_type::type; return RView(src.height(),src.width(),typename RView::xy_locator(src.xy_at(0,0),1,1,true)); } /// \defgroup ImageViewTransformations90CW rotated90cw_view /// \ingroup ImageViewTransformations /// \brief view of a view rotated 90 degrees clockwise /// \ingroup ImageViewTransformations90CW template inline typename dynamic_xy_step_transposed_type::type rotated90cw_view(const View& src) { using RView = typename dynamic_xy_step_transposed_type::type; return RView(src.height(),src.width(),typename RView::xy_locator(src.xy_at(0,src.height()-1),-1,1,true)); } /// \defgroup ImageViewTransformations90CCW rotated90ccw_view /// \ingroup ImageViewTransformations /// \brief view of a view rotated 90 degrees counter-clockwise /// \ingroup ImageViewTransformations90CCW template inline typename dynamic_xy_step_transposed_type::type rotated90ccw_view(const View& src) { using RView = typename dynamic_xy_step_transposed_type::type; return RView(src.height(),src.width(),typename RView::xy_locator(src.xy_at(src.width()-1,0),1,-1,true)); } /// \defgroup ImageViewTransformations180 rotated180_view /// \ingroup ImageViewTransformations /// \brief view of a view rotated 180 degrees /// \ingroup ImageViewTransformations180 template inline typename dynamic_xy_step_type::type rotated180_view(const View& src) { using RView = typename dynamic_xy_step_type::type; return RView(src.dimensions(),typename RView::xy_locator(src.xy_at(src.width()-1,src.height()-1),-1,-1)); } /// \defgroup ImageViewTransformationsSubimage subimage_view /// \ingroup ImageViewTransformations /// \brief view of an axis-aligned rectangular area within an image_view /// \ingroup ImageViewTransformationsSubimage template inline View subimage_view( View const& src, typename View::point_t const& topleft, typename View::point_t const& dimensions) { return View(dimensions, src.xy_at(topleft)); } /// \ingroup ImageViewTransformationsSubimage template inline View subimage_view(View const& src, typename View::coord_t x_min, typename View::coord_t y_min, typename View::coord_t width, typename View::coord_t height) { return View(width, height, src.xy_at(x_min, y_min)); } /// \defgroup ImageViewTransformationsSubsampled subsampled_view /// \ingroup ImageViewTransformations /// \brief view of a subsampled version of an image_view, stepping over a number of channels in X and number of rows in Y /// \ingroup ImageViewTransformationsSubsampled template inline auto subsampled_view(View const& src, typename View::coord_t x_step, typename View::coord_t y_step) -> typename dynamic_xy_step_type::type { BOOST_ASSERT(x_step > 0 && y_step > 0); using view_t =typename dynamic_xy_step_type::type; return view_t( (src.width() + (x_step - 1)) / x_step, (src.height() + (y_step - 1)) / y_step, typename view_t::xy_locator(src.xy_at(0,0), x_step, y_step)); } /// \ingroup ImageViewTransformationsSubsampled template inline auto subsampled_view(View const& src, typename View::point_t const& step) -> typename dynamic_xy_step_type::type { return subsampled_view(src, step.x, step.y); } /// \defgroup ImageViewTransformationsNthChannel nth_channel_view /// \ingroup ImageViewTransformations /// \brief single-channel (grayscale) view of the N-th channel of a given image_view namespace detail { template struct __nth_channel_view_basic; // nth_channel_view when the channels are not adjacent in memory. This can happen for multi-channel interleaved images // or images with a step template struct __nth_channel_view_basic { using type = typename view_type::type, gray_layout_t, false, true, view_is_mutable::value>::type; static type make(const View& src, int n) { using locator_t = typename type::xy_locator; using x_iterator_t = typename type::x_iterator; using x_iterator_base_t = typename iterator_adaptor_get_base::type; x_iterator_t sit(x_iterator_base_t(&(src(0,0)[n])),src.pixels().pixel_size()); return type(src.dimensions(),locator_t(sit, src.pixels().row_size())); } }; // nth_channel_view when the channels are together in memory (true for simple grayscale or planar images) template struct __nth_channel_view_basic { using type = typename view_type::type, gray_layout_t, false, false, view_is_mutable::value>::type; static type make(const View& src, int n) { using x_iterator_t = typename type::x_iterator; return interleaved_view(src.width(),src.height(),(x_iterator_t)&(src(0,0)[n]), src.pixels().row_size()); } }; template struct __nth_channel_view; // For basic (memory-based) views dispatch to __nth_channel_view_basic template struct __nth_channel_view { private: using src_x_iterator = typename View::x_iterator; // Determines whether the channels of a given pixel iterator are adjacent in memory. // Planar and grayscale iterators have channels adjacent in memory, whereas multi-channel interleaved and iterators with non-fundamental step do not. static constexpr bool adjacent = !iterator_is_step::value && (is_planar::value || num_channels::value == 1); public: using type = typename __nth_channel_view_basic::type; static type make(const View& src, int n) { return __nth_channel_view_basic::make(src,n); } }; /// \brief Function object that returns a grayscale reference of the N-th channel of a given reference. Models: PixelDereferenceAdaptorConcept. /// \ingroup PixelDereferenceAdaptorModel /// /// If the input is a pixel value or constant reference, the function object is immutable. Otherwise it is mutable (and returns non-const reference to the n-th channel) template // SrcP is a reference to PixelConcept (could be pixel value or const/non-const reference) // Examples: pixel, pixel&, const pixel&, planar_pixel_reference, planar_pixel_reference struct nth_channel_deref_fn { static constexpr bool is_mutable = pixel_is_reference::value && pixel_reference_is_mutable::value; private: using src_pixel_t = typename std::remove_reference::type; using channel_t = typename channel_type::type; using const_ref_t = typename src_pixel_t::const_reference; using ref_t = typename pixel_reference_type::type; public: using const_t = nth_channel_deref_fn; using value_type = typename pixel_value_type::type; using const_reference = typename pixel_reference_type::type; using argument_type = SrcP; using reference = mp11::mp_if_c; using result_type = reference; nth_channel_deref_fn(int n=0) : _n(n) {} template nth_channel_deref_fn(const nth_channel_deref_fn

& d) : _n(d._n) {} int _n; // the channel to use result_type operator()(argument_type srcP) const { return result_type(srcP[_n]); } }; template struct __nth_channel_view { private: using deref_t = nth_channel_deref_fn; using AD = typename View::template add_deref; public: using type = typename AD::type; static type make(const View& src, int n) { return AD::make(src, deref_t(n)); } }; } // namespace detail /// \brief Given a source image view type View, returns the type of an image view over a single channel of View /// \ingroup ImageViewTransformationsNthChannel /// /// If the channels in the source view are adjacent in memory (such as planar non-step view or single-channel view) then the /// return view is a single-channel non-step view. /// If the channels are non-adjacent (interleaved and/or step view) then the return view is a single-channel step view. template struct nth_channel_view_type { private: GIL_CLASS_REQUIRE(View, boost::gil, ImageViewConcept) using VB = detail::__nth_channel_view::value>; public: using type = typename VB::type; static type make(const View& src, int n) { return VB::make(src,n); } }; /// \ingroup ImageViewTransformationsNthChannel template typename nth_channel_view_type::type nth_channel_view(const View& src, int n) { return nth_channel_view_type::make(src,n); } /// \defgroup ImageViewTransformationsKthChannel kth_channel_view /// \ingroup ImageViewTransformations /// \brief single-channel (grayscale) view of the K-th channel of a given image_view. The channel index is a template parameter namespace detail { template struct __kth_channel_view_basic; // kth_channel_view when the channels are not adjacent in memory. This can happen for multi-channel interleaved images // or images with a step template struct __kth_channel_view_basic { private: using channel_t = typename kth_element_type::type; public: using type = typename view_type::value>::type; static type make(const View& src) { using locator_t = typename type::xy_locator; using x_iterator_t = typename type::x_iterator; using x_iterator_base_t = typename iterator_adaptor_get_base::type; x_iterator_t sit(x_iterator_base_t(&gil::at_c(src(0,0))),src.pixels().pixel_size()); return type(src.dimensions(),locator_t(sit, src.pixels().row_size())); } }; // kth_channel_view when the channels are together in memory (true for simple grayscale or planar images) template struct __kth_channel_view_basic { private: using channel_t = typename kth_element_type::type; public: using type = typename view_type::value>::type; static type make(const View& src) { using x_iterator_t = typename type::x_iterator; return interleaved_view(src.width(),src.height(),(x_iterator_t)&gil::at_c(src(0,0)), src.pixels().row_size()); } }; template struct __kth_channel_view; // For basic (memory-based) views dispatch to __kth_channel_view_basic template struct __kth_channel_view { private: using src_x_iterator = typename View::x_iterator; // Determines whether the channels of a given pixel iterator are adjacent in memory. // Planar and grayscale iterators have channels adjacent in memory, whereas multi-channel interleaved and iterators with non-fundamental step do not. static constexpr bool adjacent = !iterator_is_step::value && (is_planar::value || num_channels::value == 1); public: using type = typename __kth_channel_view_basic::type; static type make(const View& src) { return __kth_channel_view_basic::make(src); } }; /// \brief Function object that returns a grayscale reference of the K-th channel (specified as a template parameter) of a given reference. Models: PixelDereferenceAdaptorConcept. /// \ingroup PixelDereferenceAdaptorModel /// /// If the input is a pixel value or constant reference, the function object is immutable. Otherwise it is mutable (and returns non-const reference to the k-th channel) /// \tparam SrcP reference to PixelConcept (could be pixel value or const/non-const reference) /// Examples: pixel, pixel&, const pixel&, planar_pixel_reference, planar_pixel_reference template struct kth_channel_deref_fn { static constexpr bool is_mutable = pixel_is_reference::value && pixel_reference_is_mutable::value; private: using src_pixel_t = typename std::remove_reference::type; using channel_t = typename kth_element_type::type; using const_ref_t = typename src_pixel_t::const_reference; using ref_t = typename pixel_reference_type::type; public: using const_t = kth_channel_deref_fn; using value_type = typename pixel_value_type::type; using const_reference = typename pixel_reference_type::type; using argument_type = SrcP; using reference = mp11::mp_if_c; using result_type = reference; kth_channel_deref_fn() {} template kth_channel_deref_fn(const kth_channel_deref_fn&) {} result_type operator()(argument_type srcP) const { return result_type(gil::at_c(srcP)); } }; template struct __kth_channel_view { private: using deref_t = kth_channel_deref_fn; using AD = typename View::template add_deref; public: using type = typename AD::type; static type make(const View& src) { return AD::make(src, deref_t()); } }; } // namespace detail /// \brief Given a source image view type View, returns the type of an image view over a given channel of View. /// \ingroup ImageViewTransformationsKthChannel /// /// If the channels in the source view are adjacent in memory (such as planar non-step view or single-channel view) then the /// return view is a single-channel non-step view. /// If the channels are non-adjacent (interleaved and/or step view) then the return view is a single-channel step view. template struct kth_channel_view_type { private: GIL_CLASS_REQUIRE(View, boost::gil, ImageViewConcept) using VB = detail::__kth_channel_view::value>; public: using type = typename VB::type; static type make(const View& src) { return VB::make(src); } }; /// \ingroup ImageViewTransformationsKthChannel template typename kth_channel_view_type::type kth_channel_view(const View& src) { return kth_channel_view_type::make(src); } } } // namespace boost::gil #endif