/* Copyright 2005-2007 Adobe Systems Incorporated Use, modification and distribution are subject to 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). See http://stlab.adobe.com/gil for most recent version including documentation. */ /*************************************************************************************************/ #ifndef GIL_PLANAR_REF_H #define GIL_PLANAR_REF_H //////////////////////////////////////////////////////////////////////////////////////// /// \file /// \brief planar pixel reference class /// \author Lubomir Bourdev and Hailin Jin \n /// Adobe Systems Incorporated /// \date 2005-2007 \n Last updated on September 28, 2006 /// //////////////////////////////////////////////////////////////////////////////////////// #include #include "gil_config.hpp" #include "gil_concept.hpp" #include "color_base.hpp" #include "channel.hpp" #include "pixel.hpp" #include "planar_pixel_iterator.hpp" namespace boost { namespace gil { /// \defgroup ColorBaseModelPlanarRef planar_pixel_reference /// \ingroup ColorBaseModel /// \brief A homogeneous color base whose element is a channel reference. Models HomogeneousColorBaseConcept, HomogeneousPixelConcept. /// This class is used as a reference proxy to a planar pixel. /// \defgroup PixelModelPlanarRef planar_pixel_reference /// \ingroup PixelModel /// \brief A reference proxy to a planar pixel. Models HomogeneousColorBaseConcept, HomogeneousPixelConcept. /// \ingroup PixelModelPlanarRef ColorBaseModelPlanarRef PixelBasedModel /// \brief A reference proxy to a planar pixel. Models: HomogeneousColorBaseConcept, HomogeneousPixelConcept /// /// A reference to a planar pixel is a proxy class containing references to each of the corresponding channels. /// template // ChannelReference is a channel reference (const or mutable) struct planar_pixel_reference : public detail::homogeneous_color_base,mpl::size::value> { typedef detail::homogeneous_color_base,mpl::size::value> parent_t; private: // These three are only defined for homogeneous pixels typedef typename channel_traits::value_type channel_t; typedef typename channel_traits::const_reference channel_const_reference; public: BOOST_STATIC_CONSTANT(bool, is_mutable = channel_traits::is_mutable); typedef pixel > value_type; typedef planar_pixel_reference reference; typedef planar_pixel_reference const_reference; planar_pixel_reference(ChannelReference v0, ChannelReference v1) : parent_t(v0,v1) {} planar_pixel_reference(ChannelReference v0, ChannelReference v1, ChannelReference v2) : parent_t(v0,v1,v2) {} planar_pixel_reference(ChannelReference v0, ChannelReference v1, ChannelReference v2, ChannelReference v3) : parent_t(v0,v1,v2,v3) {} planar_pixel_reference(ChannelReference v0, ChannelReference v1, ChannelReference v2, ChannelReference v3, ChannelReference v4) : parent_t(v0,v1,v2,v3,v4) {} planar_pixel_reference(ChannelReference v0, ChannelReference v1, ChannelReference v2, ChannelReference v3, ChannelReference v4, ChannelReference v5) : parent_t(v0,v1,v2,v3,v4,v5) {} template planar_pixel_reference(const P& p) : parent_t(p) { check_compatible

();} // PERFORMANCE_CHECK: Is this constructor necessary? template planar_pixel_reference(pixel >& p) : parent_t(p) { check_compatible > >();} // Construct at offset from a given location template planar_pixel_reference(const planar_pixel_iterator& p, std::ptrdiff_t diff) : parent_t(p,diff) {} const planar_pixel_reference& operator=(const planar_pixel_reference& p) const { static_copy(p,*this); return *this; } template const planar_pixel_reference& operator=(const P& p) const { check_compatible

(); static_copy(p,*this); return *this; } // This overload is necessary for a compiler implementing Core Issue 574 // to prevent generation of an implicit copy assignment operator (the reason // for generating implicit copy assignment operator is that according to // Core Issue 574, a cv-qualified assignment operator is not considered // "copy assignment operator"). // EDG implemented Core Issue 574 starting with EDG Version 3.8. I'm not // sure why they did it for a template member function as well. #if BOOST_WORKAROUND(__HP_aCC, >= 61700) || BOOST_WORKAROUND(__INTEL_COMPILER, >= 1000) const planar_pixel_reference& operator=(const planar_pixel_reference& p) { static_copy(p,*this); return *this; } template const planar_pixel_reference& operator=(const P& p) { check_compatible

(); static_copy(p,*this); return *this; } #endif template bool operator==(const P& p) const { check_compatible

(); return static_equal(*this,p); } template bool operator!=(const P& p) const { return !(*this==p); } ChannelReference operator[](std::size_t i) const { return this->at_c_dynamic(i); } const planar_pixel_reference* operator->() const { return this; } private: template static void check_compatible() { gil_function_requires >(); } }; ///////////////////////////// // ColorBasedConcept ///////////////////////////// template struct kth_element_type, K> { typedef ChannelReference type; }; template struct kth_element_reference_type, K> { typedef ChannelReference type; }; template struct kth_element_const_reference_type, K> : public add_reference::type> { // typedef typename channel_traits::const_reference type; }; ///////////////////////////// // PixelConcept ///////////////////////////// /// \brief Metafunction predicate that flags planar_pixel_reference as a model of PixelConcept. Required by PixelConcept /// \ingroup PixelModelPlanarRef template struct is_pixel< planar_pixel_reference > : public mpl::true_{}; ///////////////////////////// // HomogeneousPixelBasedConcept ///////////////////////////// /// \brief Specifies the color space type of a planar pixel reference. Required by PixelBasedConcept /// \ingroup PixelModelPlanarRef template struct color_space_type > { typedef ColorSpace type; }; /// \brief Specifies the color space type of a planar pixel reference. Required by PixelBasedConcept /// \ingroup PixelModelPlanarRef template struct channel_mapping_type > { typedef typename layout::channel_mapping_t type; }; /// \brief Specifies that planar_pixel_reference represents a planar construct. Required by PixelBasedConcept /// \ingroup PixelModelPlanarRef template struct is_planar > : mpl::true_ {}; /// \brief Specifies the color space type of a planar pixel reference. Required by HomogeneousPixelBasedConcept /// \ingroup PixelModelPlanarRef template struct channel_type > { typedef typename channel_traits::value_type type; }; } } // namespace boost::gil namespace std { // We are forced to define swap inside std namespace because on some platforms (Visual Studio 8) STL calls swap qualified. // swap with 'left bias': // - swap between proxy and anything // - swap between value type and proxy // - swap between proxy and proxy // Having three overloads allows us to swap between different (but compatible) models of PixelConcept /// \brief swap for planar_pixel_reference /// \ingroup PixelModelPlanarRef template inline void swap(const boost::gil::planar_pixel_reference x, R& y) { boost::gil::swap_proxy::value_type>(x,y); } /// \brief swap for planar_pixel_reference /// \ingroup PixelModelPlanarRef template inline void swap(typename boost::gil::planar_pixel_reference::value_type& x, const boost::gil::planar_pixel_reference y) { boost::gil::swap_proxy::value_type>(x,y); } /// \brief swap for planar_pixel_reference /// \ingroup PixelModelPlanarRef template inline void swap(const boost::gil::planar_pixel_reference x, const boost::gil::planar_pixel_reference y) { boost::gil::swap_proxy::value_type>(x,y); } } // namespace std #endif