device_n.hpp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. Copyright 2005-2007 Adobe Systems Incorporated
  3. Use, modification and distribution are subject to the Boost Software License,
  4. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. See http://stlab.adobe.com/gil for most recent version including documentation.
  7. */
  8. /*************************************************************************************************/
  9. #ifndef GIL_DEVICE_N_H
  10. #define GIL_DEVICE_N_H
  11. ////////////////////////////////////////////////////////////////////////////////////////
  12. /// \file
  13. /// \brief Support for color space of N channels and variants
  14. /// \author Lubomir Bourdev and Hailin Jin \n
  15. /// Adobe Systems Incorporated
  16. /// \date 2005-2009 \n Last updated on February 20, 2009
  17. ////////////////////////////////////////////////////////////////////////////////////////
  18. #include <cstddef>
  19. #include "gil_config.hpp"
  20. #include "utilities.hpp"
  21. #include "metafunctions.hpp"
  22. #include <boost/type_traits.hpp>
  23. #include <boost/mpl/range_c.hpp>
  24. #include <boost/mpl/vector_c.hpp>
  25. namespace boost { namespace gil {
  26. /// \brief unnamed color
  27. /// \ingroup ColorNameModel
  28. template <int N> struct devicen_color_t {};
  29. template <int N> struct devicen_t;
  30. /// \brief unnamed color space of one channel
  31. /// \ingroup ColorSpaceModel
  32. template <> struct devicen_t<1> : public mpl::vector1<devicen_color_t<0> > {};
  33. /// \brief unnamed color space of two channels
  34. /// \ingroup ColorSpaceModel
  35. template <> struct devicen_t<2> : public mpl::vector2<devicen_color_t<0>, devicen_color_t<1> > {};
  36. /// \brief unnamed color space of three channels
  37. /// \ingroup ColorSpaceModel
  38. template <> struct devicen_t<3> : public mpl::vector3<devicen_color_t<0>, devicen_color_t<1>, devicen_color_t<2> > {};
  39. /// \brief unnamed color space of four channels
  40. /// \ingroup ColorSpaceModel
  41. template <> struct devicen_t<4> : public mpl::vector4<devicen_color_t<0>, devicen_color_t<1>, devicen_color_t<2>, devicen_color_t<3> > {};
  42. /// \brief unnamed color space of five channels
  43. /// \ingroup ColorSpaceModel
  44. template <> struct devicen_t<5> : public mpl::vector5<devicen_color_t<0>, devicen_color_t<1>, devicen_color_t<2>, devicen_color_t<3>, devicen_color_t<4> > {};
  45. /// \brief unnamed color layout of up to five channels
  46. /// \ingroup LayoutModel
  47. template <int N> struct devicen_layout_t : public layout<devicen_t<N> > {};
  48. /// \ingroup ImageViewConstructors
  49. /// \brief from 2-channel planar data
  50. template <typename IC>
  51. inline typename type_from_x_iterator<planar_pixel_iterator<IC,devicen_t<2> > >::view_t
  52. planar_devicen_view(std::size_t width, std::size_t height, IC c0, IC c1, std::ptrdiff_t rowsize_in_bytes) {
  53. typedef typename type_from_x_iterator<planar_pixel_iterator<IC,devicen_t<2> > >::view_t view_t;
  54. return view_t(width, height, typename view_t::locator(typename view_t::x_iterator(c0,c1), rowsize_in_bytes));
  55. }
  56. /// \ingroup ImageViewConstructors
  57. /// \brief from 3-channel planar data
  58. template <typename IC>
  59. inline typename type_from_x_iterator<planar_pixel_iterator<IC,devicen_t<3> > >::view_t
  60. planar_devicen_view(std::size_t width, std::size_t height, IC c0, IC c1, IC c2, std::ptrdiff_t rowsize_in_bytes) {
  61. typedef typename type_from_x_iterator<planar_pixel_iterator<IC,devicen_t<3> > >::view_t view_t;
  62. return view_t(width, height, typename view_t::locator(typename view_t::x_iterator(c0,c1,c2), rowsize_in_bytes));
  63. }
  64. /// \ingroup ImageViewConstructors
  65. /// \brief from 4-channel planar data
  66. template <typename IC>
  67. inline typename type_from_x_iterator<planar_pixel_iterator<IC,devicen_t<4> > >::view_t
  68. planar_devicen_view(std::size_t width, std::size_t height, IC c0, IC c1, IC c2, IC c3, std::ptrdiff_t rowsize_in_bytes) {
  69. typedef typename type_from_x_iterator<planar_pixel_iterator<IC,devicen_t<4> > >::view_t view_t;
  70. return view_t(width, height, typename view_t::locator(typename view_t::x_iterator(c0,c1,c2,c3), rowsize_in_bytes));
  71. }
  72. /// \ingroup ImageViewConstructors
  73. /// \brief from 5-channel planar data
  74. template <typename IC>
  75. inline typename type_from_x_iterator<planar_pixel_iterator<IC,devicen_t<5> > >::view_t
  76. planar_devicen_view(std::size_t width, std::size_t height, IC c0, IC c1, IC c2, IC c3, IC c4, std::ptrdiff_t rowsize_in_bytes) {
  77. typedef typename type_from_x_iterator<planar_pixel_iterator<IC,devicen_t<5> > >::view_t view_t;
  78. return view_t(width, height, typename view_t::locator(typename view_t::x_iterator(c0,c1,c2,c3,c4), rowsize_in_bytes));
  79. }
  80. } } // namespace boost::gil
  81. #endif