channel_algorithm.hpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  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://opensource.adobe.com/gil for most recent version including documentation.
  7. */
  8. /*************************************************************************************************/
  9. #ifndef GIL_CHANNEL_ALGORITHM_HPP
  10. #define GIL_CHANNEL_ALGORITHM_HPP
  11. ////////////////////////////////////////////////////////////////////////////////////////
  12. /// \file
  13. /// \brief Channel algorithms
  14. /// \author Lubomir Bourdev and Hailin Jin \n
  15. /// Adobe Systems Incorporated
  16. /// \date 2005-2007 \n Last updated on May 6, 2007
  17. ///
  18. /// Definitions of standard GIL 8-bit, 16-bit, 32-bit channels
  19. ///
  20. ////////////////////////////////////////////////////////////////////////////////////////
  21. #include "gil_config.hpp"
  22. #include "channel.hpp"
  23. #include <boost/mpl/less.hpp>
  24. #include <boost/mpl/integral_c.hpp>
  25. #include <boost/mpl/greater.hpp>
  26. #include <boost/type_traits.hpp>
  27. namespace boost { namespace gil {
  28. //#ifdef _MSC_VER
  29. //#pragma warning(push)
  30. //#pragma warning(disable: 4309) // disable truncation of constant value warning (using -1 to get the max value of an integral)
  31. //#endif
  32. namespace detail {
  33. // some forward declarations
  34. template <typename SrcChannelV, typename DstChannelV, bool SrcIsIntegral, bool DstIsIntegral> struct channel_converter_unsigned_impl;
  35. template <typename SrcChannelV, typename DstChannelV, bool SrcIsGreater> struct channel_converter_unsigned_integral;
  36. template <typename SrcChannelV, typename DstChannelV, bool SrcLessThanDst, bool SrcDivisible> struct channel_converter_unsigned_integral_impl;
  37. template <typename SrcChannelV, typename DstChannelV, bool SrcLessThanDst, bool CannotFitInInteger> struct channel_converter_unsigned_integral_nondivisible;
  38. //////////////////////////////////////
  39. //// unsigned_integral_max_value - given an unsigned integral channel type, returns its maximum value as an MPL integral constant
  40. //////////////////////////////////////
  41. template <typename UnsignedIntegralChannel>
  42. struct unsigned_integral_max_value : public mpl::integral_c<UnsignedIntegralChannel,-1> {};
  43. template <>
  44. struct unsigned_integral_max_value<uint8_t> : public mpl::integral_c<uint32_t,0xFF> {};
  45. template <>
  46. struct unsigned_integral_max_value<uint16_t> : public mpl::integral_c<uint32_t,0xFFFF> {};
  47. template <>
  48. struct unsigned_integral_max_value<uint32_t> : public mpl::integral_c<uintmax_t,0xFFFFFFFF> {};
  49. template <int K>
  50. struct unsigned_integral_max_value<packed_channel_value<K> >
  51. : public mpl::integral_c<typename packed_channel_value<K>::integer_t, (1<<K)-1> {};
  52. //////////////////////////////////////
  53. //// unsigned_integral_num_bits - given an unsigned integral channel type, returns the minimum number of bits needed to represent it
  54. //////////////////////////////////////
  55. template <typename UnsignedIntegralChannel>
  56. struct unsigned_integral_num_bits : public mpl::int_<sizeof(UnsignedIntegralChannel)*8> {};
  57. template <int K>
  58. struct unsigned_integral_num_bits<packed_channel_value<K> >
  59. : public mpl::int_<K> {};
  60. } // namespace detail
  61. /**
  62. \defgroup ChannelConvertAlgorithm channel_convert
  63. \brief Converting from one channel type to another
  64. \ingroup ChannelAlgorithm
  65. Conversion is done as a simple linear mapping of one channel range to the other,
  66. such that the minimum/maximum value of the source maps to the minimum/maximum value of the destination.
  67. One implication of this is that the value 0 of signed channels may not be preserved!
  68. When creating new channel models, it is often a good idea to provide specializations for the channel conversion algorithms, for
  69. example, for performance optimizations. If the new model is an integral type that can be signed, it is easier to define the conversion
  70. only for the unsigned type (\p channel_converter_unsigned) and provide specializations of \p detail::channel_convert_to_unsigned
  71. and \p detail::channel_convert_from_unsigned to convert between the signed and unsigned type.
  72. Example:
  73. \code
  74. // bits32f is a floating point channel with range [0.0f ... 1.0f]
  75. bits32f src_channel = channel_traits<bits32f>::max_value();
  76. assert(src_channel == 1);
  77. // bits8 is 8-bit unsigned integral channel (typedef-ed from unsigned char)
  78. bits8 dst_channel = channel_convert<bits8>(src_channel);
  79. assert(dst_channel == 255); // max value goes to max value
  80. \endcode
  81. */
  82. /**
  83. \defgroup ChannelConvertUnsignedAlgorithm channel_converter_unsigned
  84. \ingroup ChannelConvertAlgorithm
  85. \brief Convert one unsigned/floating point channel to another. Converts both the channel type and range
  86. @{
  87. */
  88. //////////////////////////////////////
  89. //// channel_converter_unsigned
  90. //////////////////////////////////////
  91. template <typename SrcChannelV, typename DstChannelV> // Model ChannelValueConcept
  92. struct channel_converter_unsigned
  93. : public detail::channel_converter_unsigned_impl<SrcChannelV,DstChannelV,is_integral<SrcChannelV>::value,is_integral<DstChannelV>::value> {};
  94. /// \brief Converting a channel to itself - identity operation
  95. template <typename T> struct channel_converter_unsigned<T,T> : public detail::identity<T> {};
  96. namespace detail {
  97. //////////////////////////////////////
  98. //// channel_converter_unsigned_impl
  99. //////////////////////////////////////
  100. /// \brief This is the default implementation. Performance specializatons are provided
  101. template <typename SrcChannelV, typename DstChannelV, bool SrcIsIntegral, bool DstIsIntegral>
  102. struct channel_converter_unsigned_impl : public std::unary_function<DstChannelV,SrcChannelV> {
  103. DstChannelV operator()(SrcChannelV src) const {
  104. return DstChannelV(channel_traits<DstChannelV>::min_value() +
  105. (src - channel_traits<SrcChannelV>::min_value()) / channel_range<SrcChannelV>() * channel_range<DstChannelV>());
  106. }
  107. private:
  108. template <typename C>
  109. static double channel_range() {
  110. return double(channel_traits<C>::max_value()) - double(channel_traits<C>::min_value());
  111. }
  112. };
  113. // When both the source and the destination are integral channels, perform a faster conversion
  114. template <typename SrcChannelV, typename DstChannelV>
  115. struct channel_converter_unsigned_impl<SrcChannelV,DstChannelV,true,true>
  116. : public channel_converter_unsigned_integral<SrcChannelV,DstChannelV,
  117. mpl::less<unsigned_integral_max_value<SrcChannelV>,unsigned_integral_max_value<DstChannelV> >::value > {};
  118. //////////////////////////////////////
  119. //// channel_converter_unsigned_integral
  120. //////////////////////////////////////
  121. template <typename SrcChannelV, typename DstChannelV>
  122. struct channel_converter_unsigned_integral<SrcChannelV,DstChannelV,true>
  123. : public channel_converter_unsigned_integral_impl<SrcChannelV,DstChannelV,true,
  124. !(unsigned_integral_max_value<DstChannelV>::value % unsigned_integral_max_value<SrcChannelV>::value) > {};
  125. template <typename SrcChannelV, typename DstChannelV>
  126. struct channel_converter_unsigned_integral<SrcChannelV,DstChannelV,false>
  127. : public channel_converter_unsigned_integral_impl<SrcChannelV,DstChannelV,false,
  128. !(unsigned_integral_max_value<SrcChannelV>::value % unsigned_integral_max_value<DstChannelV>::value) > {};
  129. //////////////////////////////////////
  130. //// channel_converter_unsigned_integral_impl
  131. //////////////////////////////////////
  132. // Both source and destination are unsigned integral channels,
  133. // the src max value is less than the dst max value,
  134. // and the dst max value is divisible by the src max value
  135. template <typename SrcChannelV, typename DstChannelV>
  136. struct channel_converter_unsigned_integral_impl<SrcChannelV,DstChannelV,true,true> {
  137. DstChannelV operator()(SrcChannelV src) const {
  138. typedef typename unsigned_integral_max_value<DstChannelV>::value_type integer_t;
  139. static const integer_t mul = unsigned_integral_max_value<DstChannelV>::value / unsigned_integral_max_value<SrcChannelV>::value;
  140. return DstChannelV(src * mul);
  141. }
  142. };
  143. // Both source and destination are unsigned integral channels,
  144. // the dst max value is less than (or equal to) the src max value,
  145. // and the src max value is divisible by the dst max value
  146. template <typename SrcChannelV, typename DstChannelV>
  147. struct channel_converter_unsigned_integral_impl<SrcChannelV,DstChannelV,false,true> {
  148. DstChannelV operator()(SrcChannelV src) const {
  149. typedef typename unsigned_integral_max_value<SrcChannelV>::value_type integer_t;
  150. static const integer_t div = unsigned_integral_max_value<SrcChannelV>::value / unsigned_integral_max_value<DstChannelV>::value;
  151. static const integer_t div2 = div/2;
  152. return DstChannelV((src + div2) / div);
  153. }
  154. };
  155. // Prevent overflow for the largest integral type
  156. template <typename DstChannelV>
  157. struct channel_converter_unsigned_integral_impl<uintmax_t,DstChannelV,false,true> {
  158. DstChannelV operator()(uintmax_t src) const {
  159. static const uintmax_t div = unsigned_integral_max_value<bits32>::value / unsigned_integral_max_value<DstChannelV>::value;
  160. static const uintmax_t div2 = div/2;
  161. if (src > unsigned_integral_max_value<uintmax_t>::value - div2)
  162. return unsigned_integral_max_value<DstChannelV>::value;
  163. return DstChannelV((src + div2) / div);
  164. }
  165. };
  166. // Both source and destination are unsigned integral channels,
  167. // and the dst max value is not divisible by the src max value
  168. // See if you can represent the expression (src * dst_max) / src_max in integral form
  169. template <typename SrcChannelV, typename DstChannelV, bool SrcLessThanDst>
  170. struct channel_converter_unsigned_integral_impl<SrcChannelV,DstChannelV,SrcLessThanDst,false>
  171. : public channel_converter_unsigned_integral_nondivisible<SrcChannelV,DstChannelV,SrcLessThanDst,
  172. mpl::greater<
  173. mpl::plus<unsigned_integral_num_bits<SrcChannelV>,unsigned_integral_num_bits<DstChannelV> >,
  174. unsigned_integral_num_bits<uintmax_t>
  175. >::value> {};
  176. // Both source and destination are unsigned integral channels,
  177. // the src max value is less than the dst max value,
  178. // and the dst max value is not divisible by the src max value
  179. // The expression (src * dst_max) / src_max fits in an integer
  180. template <typename SrcChannelV, typename DstChannelV>
  181. struct channel_converter_unsigned_integral_nondivisible<SrcChannelV,DstChannelV,true,false> {
  182. DstChannelV operator()(SrcChannelV src) const {
  183. typedef typename detail::min_fast_uint<unsigned_integral_num_bits<SrcChannelV>::value+unsigned_integral_num_bits<DstChannelV>::value>::type integer_t;
  184. return DstChannelV(integer_t(src * unsigned_integral_max_value<DstChannelV>::value) / unsigned_integral_max_value<SrcChannelV>::value);
  185. }
  186. };
  187. // Both source and destination are unsigned integral channels,
  188. // the src max value is less than the dst max value,
  189. // and the dst max value is not divisible by the src max value
  190. // The expression (src * dst_max) / src_max cannot fit in an integer (overflows). Use a double
  191. template <typename SrcChannelV, typename DstChannelV>
  192. struct channel_converter_unsigned_integral_nondivisible<SrcChannelV,DstChannelV,true,true> {
  193. DstChannelV operator()(SrcChannelV src) const {
  194. static const double mul = unsigned_integral_max_value<DstChannelV>::value / double(unsigned_integral_max_value<SrcChannelV>::value);
  195. return DstChannelV(src * mul);
  196. }
  197. };
  198. // Both source and destination are unsigned integral channels,
  199. // the dst max value is less than (or equal to) the src max value,
  200. // and the src max value is not divisible by the dst max value
  201. template <typename SrcChannelV, typename DstChannelV, bool CannotFit>
  202. struct channel_converter_unsigned_integral_nondivisible<SrcChannelV,DstChannelV,false,CannotFit> {
  203. DstChannelV operator()(SrcChannelV src) const {
  204. typedef typename detail::unsigned_integral_max_value< SrcChannelV >::value_type src_integer_t;
  205. typedef typename detail::unsigned_integral_max_value< DstChannelV >::value_type dst_integer_t;
  206. static const double div = unsigned_integral_max_value<SrcChannelV>::value
  207. / static_cast< double >( unsigned_integral_max_value<DstChannelV>::value );
  208. static const src_integer_t div2 = static_cast< src_integer_t >( div / 2.0 );
  209. return DstChannelV( static_cast< dst_integer_t >(( static_cast< double >( src + div2 ) / div )));
  210. }
  211. };
  212. } // namespace detail
  213. /////////////////////////////////////////////////////
  214. /// bits32f conversion
  215. /////////////////////////////////////////////////////
  216. template <typename DstChannelV> struct channel_converter_unsigned<bits32f,DstChannelV> : public std::unary_function<bits32f,DstChannelV> {
  217. DstChannelV operator()(bits32f x) const
  218. {
  219. typedef typename detail::unsigned_integral_max_value< DstChannelV >::value_type dst_integer_t;
  220. return DstChannelV( static_cast< dst_integer_t >(x*channel_traits<DstChannelV>::max_value()+0.5f ));
  221. }
  222. };
  223. template <typename SrcChannelV> struct channel_converter_unsigned<SrcChannelV,bits32f> : public std::unary_function<SrcChannelV,bits32f> {
  224. bits32f operator()(SrcChannelV x) const { return bits32f(x/float(channel_traits<SrcChannelV>::max_value())); }
  225. };
  226. template <> struct channel_converter_unsigned<bits32f,bits32f> : public std::unary_function<bits32f,bits32f> {
  227. bits32f operator()(bits32f x) const { return x; }
  228. };
  229. /// \brief 32 bit <-> float channel conversion
  230. template <> struct channel_converter_unsigned<bits32,bits32f> : public std::unary_function<bits32,bits32f> {
  231. bits32f operator()(bits32 x) const {
  232. // unfortunately without an explicit check it is possible to get a round-off error. We must ensure that max_value of bits32 matches max_value of bits32f
  233. if (x>=channel_traits<bits32>::max_value()) return channel_traits<bits32f>::max_value();
  234. return float(x) / float(channel_traits<bits32>::max_value());
  235. }
  236. };
  237. /// \brief 32 bit <-> float channel conversion
  238. template <> struct channel_converter_unsigned<bits32f,bits32> : public std::unary_function<bits32f,bits32> {
  239. bits32 operator()(bits32f x) const {
  240. // unfortunately without an explicit check it is possible to get a round-off error. We must ensure that max_value of bits32 matches max_value of bits32f
  241. if (x>=channel_traits<bits32f>::max_value()) return channel_traits<bits32>::max_value();
  242. return bits32(x * channel_traits<bits32>::max_value() + 0.5f);
  243. }
  244. };
  245. /// @}
  246. namespace detail {
  247. // Converting from signed to unsigned integral channel.
  248. // It is both a unary function, and a metafunction (thus requires the 'type' nested typedef, which equals result_type)
  249. template <typename ChannelValue> // Model ChannelValueConcept
  250. struct channel_convert_to_unsigned : public detail::identity<ChannelValue> {
  251. typedef ChannelValue type;
  252. };
  253. template <> struct channel_convert_to_unsigned<bits8s> : public std::unary_function<bits8s,bits8> {
  254. typedef bits8 type;
  255. type operator()(bits8s val) const { return val+128; }
  256. };
  257. template <> struct channel_convert_to_unsigned<bits16s> : public std::unary_function<bits16s,bits16> {
  258. typedef bits16 type;
  259. type operator()(bits16s val) const { return val+32768; }
  260. };
  261. template <> struct channel_convert_to_unsigned<bits32s> : public std::unary_function<bits32s,bits32> {
  262. typedef bits32 type;
  263. type operator()(bits32s x) const { return static_cast<bits32>(x+(1<<31)); }
  264. };
  265. // Converting from unsigned to signed integral channel
  266. // It is both a unary function, and a metafunction (thus requires the 'type' nested typedef, which equals result_type)
  267. template <typename ChannelValue> // Model ChannelValueConcept
  268. struct channel_convert_from_unsigned : public detail::identity<ChannelValue> {
  269. typedef ChannelValue type;
  270. };
  271. template <> struct channel_convert_from_unsigned<bits8s> : public std::unary_function<bits8,bits8s> {
  272. typedef bits8s type;
  273. type operator()(bits8 val) const { return val-128; }
  274. };
  275. template <> struct channel_convert_from_unsigned<bits16s> : public std::unary_function<bits16,bits16s> {
  276. typedef bits16s type;
  277. type operator()(bits16 val) const { return val-32768; }
  278. };
  279. template <> struct channel_convert_from_unsigned<bits32s> : public std::unary_function<bits32,bits32s> {
  280. typedef bits32s type;
  281. type operator()(bits32 x) const { return static_cast<bits32s>(x-(1<<31)); }
  282. };
  283. } // namespace detail
  284. /// \ingroup ChannelConvertAlgorithm
  285. /// \brief A unary function object converting between channel types
  286. template <typename SrcChannelV, typename DstChannelV> // Model ChannelValueConcept
  287. struct channel_converter : public std::unary_function<SrcChannelV,DstChannelV> {
  288. DstChannelV operator()(const SrcChannelV& src) const {
  289. typedef detail::channel_convert_to_unsigned<SrcChannelV> to_unsigned;
  290. typedef detail::channel_convert_from_unsigned<DstChannelV> from_unsigned;
  291. typedef channel_converter_unsigned<typename to_unsigned::result_type, typename from_unsigned::argument_type> converter_unsigned;
  292. return from_unsigned()(converter_unsigned()(to_unsigned()(src)));
  293. }
  294. };
  295. /// \ingroup ChannelConvertAlgorithm
  296. /// \brief Converting from one channel type to another.
  297. template <typename DstChannel, typename SrcChannel> // Model ChannelConcept (could be channel references)
  298. inline typename channel_traits<DstChannel>::value_type channel_convert(const SrcChannel& src) {
  299. return channel_converter<typename channel_traits<SrcChannel>::value_type,
  300. typename channel_traits<DstChannel>::value_type>()(src);
  301. }
  302. /// \ingroup ChannelConvertAlgorithm
  303. /// \brief Same as channel_converter, except it takes the destination channel by reference, which allows
  304. /// us to move the templates from the class level to the method level. This is important when invoking it
  305. /// on heterogeneous pixels.
  306. struct default_channel_converter {
  307. template <typename Ch1, typename Ch2>
  308. void operator()(const Ch1& src, Ch2& dst) const {
  309. dst=channel_convert<Ch2>(src);
  310. }
  311. };
  312. namespace detail {
  313. // fast integer division by 255
  314. inline uint32_t div255(uint32_t in) { uint32_t tmp=in+128; return (tmp + (tmp>>8))>>8; }
  315. // fast integer divison by 32768
  316. inline uint32_t div32768(uint32_t in) { return (in+16384)>>15; }
  317. }
  318. /**
  319. \defgroup ChannelMultiplyAlgorithm channel_multiply
  320. \ingroup ChannelAlgorithm
  321. \brief Multiplying unsigned channel values of the same type. Performs scaled multiplication result = a * b / max_value
  322. Example:
  323. \code
  324. bits8 x=128;
  325. bits8 y=128;
  326. bits8 mul = channel_multiply(x,y);
  327. assert(mul == 64); // 64 = 128 * 128 / 255
  328. \endcode
  329. */
  330. /// @{
  331. /// \brief This is the default implementation. Performance specializatons are provided
  332. template <typename ChannelValue>
  333. struct channel_multiplier_unsigned : public std::binary_function<ChannelValue,ChannelValue,ChannelValue> {
  334. ChannelValue operator()(ChannelValue a, ChannelValue b) const {
  335. return ChannelValue(a / double(channel_traits<ChannelValue>::max_value()) * b);
  336. }
  337. };
  338. /// \brief Specialization of channel_multiply for 8-bit unsigned channels
  339. template<> struct channel_multiplier_unsigned<bits8> : public std::binary_function<bits8,bits8,bits8> {
  340. bits8 operator()(bits8 a, bits8 b) const { return bits8(detail::div255(uint32_t(a) * uint32_t(b))); }
  341. };
  342. /// \brief Specialization of channel_multiply for 16-bit unsigned channels
  343. template<> struct channel_multiplier_unsigned<bits16> : public std::binary_function<bits16,bits16,bits16> {
  344. bits16 operator()(bits16 a, bits16 b) const { return bits16((uint32_t(a) * uint32_t(b))/65535); }
  345. };
  346. /// \brief Specialization of channel_multiply for float 0..1 channels
  347. template<> struct channel_multiplier_unsigned<bits32f> : public std::binary_function<bits32f,bits32f,bits32f> {
  348. bits32f operator()(bits32f a, bits32f b) const { return a*b; }
  349. };
  350. /// \brief A function object to multiply two channels. result = a * b / max_value
  351. template <typename ChannelValue>
  352. struct channel_multiplier : public std::binary_function<ChannelValue, ChannelValue, ChannelValue> {
  353. ChannelValue operator()(ChannelValue a, ChannelValue b) const {
  354. typedef detail::channel_convert_to_unsigned<ChannelValue> to_unsigned;
  355. typedef detail::channel_convert_from_unsigned<ChannelValue> from_unsigned;
  356. typedef channel_multiplier_unsigned<typename to_unsigned::result_type> multiplier_unsigned;
  357. return from_unsigned()(multiplier_unsigned()(to_unsigned()(a), to_unsigned()(b)));
  358. }
  359. };
  360. /// \brief A function multiplying two channels. result = a * b / max_value
  361. template <typename Channel> // Models ChannelConcept (could be a channel reference)
  362. inline typename channel_traits<Channel>::value_type channel_multiply(Channel a, Channel b) {
  363. return channel_multiplier<typename channel_traits<Channel>::value_type>()(a,b);
  364. }
  365. /// @}
  366. /**
  367. \defgroup ChannelInvertAlgorithm channel_invert
  368. \ingroup ChannelAlgorithm
  369. \brief Returns the inverse of a channel. result = max_value - x + min_value
  370. Example:
  371. \code
  372. // bits8 == uint8_t == unsigned char
  373. bits8 x=255;
  374. bits8 inv = channel_invert(x);
  375. assert(inv == 0);
  376. \endcode
  377. */
  378. /// \brief Default implementation. Provide overloads for performance
  379. /// \ingroup ChannelInvertAlgorithm channel_invert
  380. template <typename Channel> // Models ChannelConcept (could be a channel reference)
  381. inline typename channel_traits<Channel>::value_type channel_invert(Channel x) {
  382. return channel_traits<Channel>::max_value()-x + channel_traits<Channel>::min_value();
  383. }
  384. //#ifdef _MSC_VER
  385. //#pragma warning(pop)
  386. //#endif
  387. } } // namespace boost::gil
  388. #endif