gil_concept.hpp 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187
  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_CONCEPT_H
  10. #define GIL_CONCEPT_H
  11. ////////////////////////////////////////////////////////////////////////////////////////
  12. /// \file
  13. /// \brief Concept check classes for GIL concepts
  14. /// \author Lubomir Bourdev and Hailin Jin \n
  15. /// Adobe Systems Incorporated
  16. /// \date 2005-2007 \n Last updated on February 12, 2007
  17. ///
  18. ////////////////////////////////////////////////////////////////////////////////////////
  19. #include <functional>
  20. #include "gil_config.hpp"
  21. #include <boost/type_traits.hpp>
  22. #include <boost/utility/enable_if.hpp>
  23. #include <boost/concept_check.hpp>
  24. #include <boost/iterator/iterator_concepts.hpp>
  25. #include <boost/mpl/and.hpp>
  26. #include <boost/mpl/size.hpp>
  27. namespace boost { namespace gil {
  28. template <typename T> struct channel_traits;
  29. template <typename P> struct is_pixel;
  30. template <typename dstT, typename srcT>
  31. typename channel_traits<dstT>::value_type channel_convert(const srcT& val);
  32. template <typename T> class point2;
  33. template <std::size_t K, typename T> const T& axis_value(const point2<T>& p);
  34. template <std::size_t K, typename T> T& axis_value( point2<T>& p);
  35. template <typename ColorBase, int K> struct kth_element_type;
  36. template <typename ColorBase, int K> struct kth_element_reference_type;
  37. template <typename ColorBase, int K> struct kth_element_const_reference_type;
  38. template <typename ColorBase, int K> struct kth_semantic_element_reference_type;
  39. template <typename ColorBase, int K> struct kth_semantic_element_const_reference_type;
  40. template <typename ColorBase> struct size;
  41. template <typename ColorBase> struct element_type;
  42. template <typename T> struct channel_type;
  43. template <typename T> struct color_space_type;
  44. template <typename T> struct channel_mapping_type;
  45. template <typename T> struct is_planar;
  46. template <typename T> struct num_channels;
  47. template <typename It> struct const_iterator_type;
  48. template <typename It> struct iterator_is_mutable;
  49. template <typename It> struct is_iterator_adaptor;
  50. template <typename It, typename NewBaseIt> struct iterator_adaptor_rebind;
  51. template <typename It> struct iterator_adaptor_get_base;
  52. // forward-declare at_c
  53. namespace detail { template <typename Element, typename Layout, int K> struct homogeneous_color_base; }
  54. template <int K, typename E, typename L, int N>
  55. typename add_reference<E>::type at_c( detail::homogeneous_color_base<E,L,N>& p);
  56. template <int K, typename E, typename L, int N>
  57. typename add_reference<typename add_const<E>::type>::type at_c(const detail::homogeneous_color_base<E,L,N>& p);
  58. #if !defined(_MSC_VER) || _MSC_VER > 1310
  59. template <typename P, typename C, typename L> struct packed_pixel;
  60. template <int K, typename P, typename C, typename L>
  61. typename kth_element_reference_type<packed_pixel<P,C,L>, K>::type
  62. at_c(packed_pixel<P,C,L>& p);
  63. template <int K, typename P, typename C, typename L>
  64. typename kth_element_const_reference_type<packed_pixel<P,C,L>,K>::type
  65. at_c(const packed_pixel<P,C,L>& p);
  66. template <typename B, typename C, typename L, bool M> struct bit_aligned_pixel_reference;
  67. template <int K, typename B, typename C, typename L, bool M> inline
  68. typename kth_element_reference_type<bit_aligned_pixel_reference<B,C,L,M>, K>::type
  69. at_c(const bit_aligned_pixel_reference<B,C,L,M>& p);
  70. #endif
  71. // Forward-declare semantic_at_c
  72. template <int K, typename ColorBase>
  73. typename disable_if<is_const<ColorBase>,typename kth_semantic_element_reference_type<ColorBase,K>::type>::type semantic_at_c(ColorBase& p);
  74. template <int K, typename ColorBase>
  75. typename kth_semantic_element_const_reference_type<ColorBase,K>::type semantic_at_c(const ColorBase& p);
  76. template <typename T> struct dynamic_x_step_type;
  77. template <typename T> struct dynamic_y_step_type;
  78. template <typename T> struct transposed_type;
  79. namespace detail {
  80. template <typename T>
  81. void initialize_it(T& x) {}
  82. } // namespace detail
  83. template <typename T>
  84. struct remove_const_and_reference : public remove_const<typename remove_reference<T>::type> {};
  85. #ifdef BOOST_GIL_USE_CONCEPT_CHECK
  86. #define GIL_CLASS_REQUIRE(type_var, ns, concept) BOOST_CLASS_REQUIRE(type_var, ns, concept);
  87. template <typename C> void gil_function_requires() { function_requires<C>(); }
  88. #else
  89. #define GIL_CLASS_REQUIRE(T,NS,C)
  90. template <typename C> void gil_function_requires() {}
  91. #endif
  92. /// \ingroup BasicConcepts
  93. /**
  94. \code
  95. auto concept DefaultConstructible<typename T> {
  96. T::T();
  97. };
  98. \endcode
  99. */
  100. template <typename T>
  101. struct DefaultConstructible {
  102. void constraints() {
  103. function_requires<boost::DefaultConstructibleConcept<T> >();
  104. }
  105. };
  106. /// \ingroup BasicConcepts
  107. /**
  108. \codeauto concept CopyConstructible<typename T> {
  109. T::T(T);
  110. T::~T();
  111. };
  112. \endcode
  113. */
  114. template <typename T>
  115. struct CopyConstructible {
  116. void constraints() {
  117. function_requires<boost::CopyConstructibleConcept<T> >();
  118. }
  119. };
  120. /// \ingroup BasicConcepts
  121. /**
  122. \code
  123. auto concept Assignable<typename T, typename U = T> {
  124. typename result_type;
  125. result_type operator=(T&, U);
  126. };
  127. \endcode
  128. */
  129. template <typename T>
  130. struct Assignable {
  131. void constraints() {
  132. function_requires<boost::AssignableConcept<T> >();
  133. }
  134. };
  135. /// \ingroup BasicConcepts
  136. /**
  137. \code
  138. auto concept EqualityComparable<typename T, typename U = T> {
  139. bool operator==(T x, T y);
  140. bool operator!=(T x, T y) { return !(x==y); }
  141. };
  142. \endcode
  143. */
  144. template <typename T>
  145. struct EqualityComparable {
  146. void constraints() {
  147. function_requires<boost::EqualityComparableConcept<T> >();
  148. }
  149. };
  150. /// \ingroup BasicConcepts
  151. /**
  152. \code
  153. concept SameType<typename T, typename U>;// unspecified
  154. \endcode
  155. */
  156. template <typename T, typename U>
  157. struct SameType {
  158. void constraints() {
  159. BOOST_STATIC_ASSERT((boost::is_same<T,U>::value_core));
  160. }
  161. };
  162. /// \ingroup BasicConcepts
  163. /**
  164. \code
  165. auto concept Swappable<typename T> {
  166. void swap(T&,T&);
  167. };
  168. \endcode
  169. */
  170. template <typename T>
  171. struct Swappable {
  172. void constraints() {
  173. using std::swap;
  174. swap(x,y);
  175. }
  176. T x,y;
  177. };
  178. /// \ingroup BasicConcepts
  179. /**
  180. \code
  181. auto concept Regular<typename T> : DefaultConstructible<T>, CopyConstructible<T>, EqualityComparable<T>,
  182. Assignable<T>, Swappable<T> {};
  183. \endcode
  184. */
  185. template <typename T>
  186. struct Regular {
  187. void constraints() {
  188. gil_function_requires< boost::DefaultConstructibleConcept<T> >();
  189. gil_function_requires< boost::CopyConstructibleConcept<T> >();
  190. gil_function_requires< boost::EqualityComparableConcept<T> >(); // ==, !=
  191. gil_function_requires< boost::AssignableConcept<T> >();
  192. gil_function_requires< Swappable<T> >();
  193. }
  194. };
  195. /// \ingroup BasicConcepts
  196. /**
  197. \code
  198. auto concept Metafunction<typename T> {
  199. typename type;
  200. };
  201. \endcode
  202. */
  203. template <typename T>
  204. struct Metafunction {
  205. void constraints() {
  206. typedef typename T::type type;
  207. }
  208. };
  209. ////////////////////////////////////////////////////////////////////////////////////////
  210. //
  211. // POINT CONCEPTS
  212. //
  213. ////////////////////////////////////////////////////////////////////////////////////////
  214. /// \brief N-dimensional point concept
  215. /// \ingroup PointConcept
  216. /**
  217. \code
  218. concept PointNDConcept<typename T> : Regular<T> {
  219. // the type of a coordinate along each axis
  220. template <size_t K> struct axis; where Metafunction<axis>;
  221. const size_t num_dimensions;
  222. // accessor/modifier of the value of each axis.
  223. template <size_t K> const typename axis<K>::type& T::axis_value() const;
  224. template <size_t K> typename axis<K>::type& T::axis_value();
  225. };
  226. \endcode
  227. */
  228. template <typename P>
  229. struct PointNDConcept {
  230. void constraints() {
  231. gil_function_requires< Regular<P> >();
  232. typedef typename P::value_type value_type;
  233. static const std::size_t N=P::num_dimensions; ignore_unused_variable_warning(N);
  234. typedef typename P::template axis<0>::coord_t FT;
  235. typedef typename P::template axis<N-1>::coord_t LT;
  236. FT ft=gil::axis_value<0>(point);
  237. axis_value<0>(point)=ft;
  238. LT lt=axis_value<N-1>(point);
  239. axis_value<N-1>(point)=lt;
  240. value_type v=point[0]; ignore_unused_variable_warning(v);
  241. point[0]=point[0];
  242. }
  243. P point;
  244. };
  245. /// \brief 2-dimensional point concept
  246. /// \ingroup PointConcept
  247. /**
  248. \code
  249. concept Point2DConcept<typename T> : PointNDConcept<T> {
  250. where num_dimensions == 2;
  251. where SameType<axis<0>::type, axis<1>::type>;
  252. typename value_type = axis<0>::type;
  253. const value_type& operator[](const T&, size_t i);
  254. value_type& operator[]( T&, size_t i);
  255. value_type x,y;
  256. };
  257. \endcode
  258. */
  259. template <typename P>
  260. struct Point2DConcept {
  261. void constraints() {
  262. gil_function_requires< PointNDConcept<P> >();
  263. BOOST_STATIC_ASSERT(P::num_dimensions == 2);
  264. point.x=point.y;
  265. point[0]=point[1];
  266. }
  267. P point;
  268. };
  269. ////////////////////////////////////////////////////////////////////////////////////////
  270. //
  271. // ITERATOR MUTABILITY CONCEPTS
  272. //
  273. // Taken from boost's concept_check.hpp. Isolating mutability to result in faster compile time
  274. //
  275. ////////////////////////////////////////////////////////////////////////////////////////
  276. namespace detail {
  277. template <class TT> // Preconditions: TT Models boost_concepts::ForwardTraversalConcept
  278. struct ForwardIteratorIsMutableConcept {
  279. void constraints() {
  280. *i++ = *i; // require postincrement and assignment
  281. }
  282. TT i;
  283. };
  284. template <class TT> // Preconditions: TT Models boost::BidirectionalIteratorConcept
  285. struct BidirectionalIteratorIsMutableConcept {
  286. void constraints() {
  287. gil_function_requires< ForwardIteratorIsMutableConcept<TT> >();
  288. *i-- = *i; // require postdecrement and assignment
  289. }
  290. TT i;
  291. };
  292. template <class TT> // Preconditions: TT Models boost_concepts::RandomAccessTraversalConcept
  293. struct RandomAccessIteratorIsMutableConcept {
  294. void constraints() {
  295. gil_function_requires< BidirectionalIteratorIsMutableConcept<TT> >();
  296. typename std::iterator_traits<TT>::difference_type n=0; ignore_unused_variable_warning(n);
  297. i[n] = *i; // require element access and assignment
  298. }
  299. TT i;
  300. };
  301. } // namespace detail
  302. ////////////////////////////////////////////////////////////////////////////////////////
  303. //
  304. // COLOR SPACE CONCEPTS
  305. //
  306. ////////////////////////////////////////////////////////////////////////////////////////
  307. /// \brief Color space type concept
  308. /// \ingroup ColorSpaceAndLayoutConcept
  309. /**
  310. \code
  311. concept ColorSpaceConcept<MPLRandomAccessSequence Cs> {
  312. // An MPL Random Access Sequence, whose elements are color tags
  313. };
  314. \endcode
  315. */
  316. template <typename Cs>
  317. struct ColorSpaceConcept {
  318. void constraints() {
  319. // An MPL Random Access Sequence, whose elements are color tags
  320. }
  321. };
  322. template <typename ColorSpace1, typename ColorSpace2> // Models ColorSpaceConcept
  323. struct color_spaces_are_compatible : public is_same<ColorSpace1,ColorSpace2> {};
  324. /// \brief Two color spaces are compatible if they are the same
  325. /// \ingroup ColorSpaceAndLayoutConcept
  326. /**
  327. \code
  328. concept ColorSpacesCompatibleConcept<ColorSpaceConcept Cs1, ColorSpaceConcept Cs2> {
  329. where SameType<Cs1,Cs2>;
  330. };
  331. \endcode
  332. */
  333. template <typename Cs1, typename Cs2>
  334. struct ColorSpacesCompatibleConcept {
  335. void constraints() {
  336. BOOST_STATIC_ASSERT((color_spaces_are_compatible<Cs1,Cs2>::value));
  337. }
  338. };
  339. /// \brief Channel mapping concept
  340. /// \ingroup ColorSpaceAndLayoutConcept
  341. /**
  342. \code
  343. concept ChannelMappingConcept<MPLRandomAccessSequence CM> {
  344. // An MPL Random Access Sequence, whose elements model MPLIntegralConstant representing a permutation
  345. };
  346. \endcode
  347. */
  348. template <typename CM>
  349. struct ChannelMappingConcept {
  350. void constraints() {
  351. // An MPL Random Access Sequence, whose elements model MPLIntegralConstant representing a permutation
  352. }
  353. };
  354. ////////////////////////////////////////////////////////////////////////////////////////
  355. ///
  356. /// Channel CONCEPTS
  357. ///
  358. ////////////////////////////////////////////////////////////////////////////////////////
  359. /// \ingroup ChannelConcept
  360. /// \brief A channel is the building block of a color. Color is defined as a mixture of primary colors and a channel defines the degree to which each primary color is used in the mixture.
  361. /**
  362. For example, in the RGB color space, using 8-bit unsigned channels, the color red is defined as [255 0 0], which means maximum of Red, and no Green and Blue.
  363. Built-in scalar types, such as \p int and \p float, are valid GIL channels. In more complex scenarios, channels may be represented as bit ranges or even individual bits.
  364. In such cases special classes are needed to represent the value and reference to a channel.
  365. Channels have a traits class, \p channel_traits, which defines their associated types as well as their operating ranges.
  366. \code
  367. concept ChannelConcept<typename T> : EqualityComparable<T> {
  368. typename value_type = T; // use channel_traits<T>::value_type to access it
  369. typename reference = T&; // use channel_traits<T>::reference to access it
  370. typename pointer = T*; // use channel_traits<T>::pointer to access it
  371. typename const_reference = const T&; // use channel_traits<T>::const_reference to access it
  372. typename const_pointer = const T*; // use channel_traits<T>::const_pointer to access it
  373. static const bool is_mutable; // use channel_traits<T>::is_mutable to access it
  374. static T min_value(); // use channel_traits<T>::min_value to access it
  375. static T max_value(); // use channel_traits<T>::min_value to access it
  376. };
  377. \endcode
  378. */
  379. template <typename T>
  380. struct ChannelConcept {
  381. void constraints() {
  382. gil_function_requires< boost::EqualityComparableConcept<T> >();
  383. typedef typename channel_traits<T>::value_type v;
  384. typedef typename channel_traits<T>::reference r;
  385. typedef typename channel_traits<T>::pointer p;
  386. typedef typename channel_traits<T>::const_reference cr;
  387. typedef typename channel_traits<T>::const_pointer cp;
  388. channel_traits<T>::min_value();
  389. channel_traits<T>::max_value();
  390. }
  391. T c;
  392. };
  393. namespace detail {
  394. // Preconditions: T models ChannelConcept
  395. template <typename T>
  396. struct ChannelIsMutableConcept {
  397. void constraints() {
  398. c=c;
  399. using std::swap;
  400. swap(c,c);
  401. }
  402. T c;
  403. };
  404. }
  405. /// \brief A channel that allows for modifying its value
  406. /// \ingroup ChannelConcept
  407. /**
  408. \code
  409. concept MutableChannelConcept<ChannelConcept T> : Assignable<T>, Swappable<T> {};
  410. \endcode
  411. */
  412. template <typename T>
  413. struct MutableChannelConcept {
  414. void constraints() {
  415. gil_function_requires<ChannelConcept<T> >();
  416. gil_function_requires<detail::ChannelIsMutableConcept<T> >();
  417. }
  418. };
  419. /// \brief A channel that supports default construction.
  420. /// \ingroup ChannelConcept
  421. /**
  422. \code
  423. concept ChannelValueConcept<ChannelConcept T> : Regular<T> {};
  424. \endcode
  425. */
  426. template <typename T>
  427. struct ChannelValueConcept {
  428. void constraints() {
  429. gil_function_requires<ChannelConcept<T> >();
  430. gil_function_requires<Regular<T> >();
  431. }
  432. };
  433. /// \brief Predicate metafunction returning whether two channels are compatible
  434. /// \ingroup ChannelAlgorithm
  435. ///
  436. /// Channels are considered compatible if their value types (ignoring constness and references) are the same.
  437. /**
  438. Example:
  439. \code
  440. BOOST_STATIC_ASSERT((channels_are_compatible<bits8, const bits8&>::value));
  441. \endcode
  442. */
  443. template <typename T1, typename T2> // Models GIL Pixel
  444. struct channels_are_compatible
  445. : public is_same<typename channel_traits<T1>::value_type, typename channel_traits<T2>::value_type> {};
  446. /// \brief Channels are compatible if their associated value types (ignoring constness and references) are the same
  447. /// \ingroup ChannelConcept
  448. /**
  449. \code
  450. concept ChannelsCompatibleConcept<ChannelConcept T1, ChannelConcept T2> {
  451. where SameType<T1::value_type, T2::value_type>;
  452. };
  453. \endcode
  454. */
  455. template <typename T1, typename T2>
  456. struct ChannelsCompatibleConcept {
  457. void constraints() {
  458. BOOST_STATIC_ASSERT((channels_are_compatible<T1,T2>::value));
  459. }
  460. };
  461. /// \brief A channel is convertible to another one if the \p channel_convert algorithm is defined for the two channels
  462. ///
  463. /// Convertibility is non-symmetric and implies that one channel can be converted to another. Conversion is explicit and often lossy operation.
  464. /// \ingroup ChannelConcept
  465. /**
  466. \code
  467. concept ChannelConvertibleConcept<ChannelConcept SrcChannel, ChannelValueConcept DstChannel> {
  468. DstChannel channel_convert(const SrcChannel&);
  469. };
  470. \endcode
  471. */
  472. template <typename SrcChannel, typename DstChannel>
  473. struct ChannelConvertibleConcept {
  474. void constraints() {
  475. gil_function_requires<ChannelConcept<SrcChannel> >();
  476. gil_function_requires<MutableChannelConcept<DstChannel> >();
  477. dst=channel_convert<DstChannel,SrcChannel>(src); ignore_unused_variable_warning(dst);
  478. }
  479. SrcChannel src;
  480. DstChannel dst;
  481. };
  482. ////////////////////////////////////////////////////////////////////////////////////////
  483. ///
  484. /// COLOR BASE CONCEPTS
  485. ///
  486. ////////////////////////////////////////////////////////////////////////////////////////
  487. /// \ingroup ColorBaseConcept
  488. /// \brief A color base is a container of color elements (such as channels, channel references or channel pointers)
  489. /**
  490. The most common use of color base is in the implementation of a pixel, in which case the color
  491. elements are channel values. The color base concept, however, can be used in other scenarios. For example, a planar pixel has channels that are not
  492. contiguous in memory. Its reference is a proxy class that uses a color base whose elements are channel references. Its iterator uses a color base
  493. whose elements are channel iterators.
  494. A color base must have an associated layout (which consists of a color space, as well as an ordering of the channels).
  495. There are two ways to index the elements of a color base: A physical index corresponds to the way they are ordered in memory, and
  496. a semantic index corresponds to the way the elements are ordered in their color space.
  497. For example, in the RGB color space the elements are ordered as {red_t, green_t, blue_t}. For a color base with a BGR layout, the first element
  498. in physical ordering is the blue element, whereas the first semantic element is the red one.
  499. Models of \p ColorBaseConcept are required to provide the \p at_c<K>(ColorBase) function, which allows for accessing the elements based on their
  500. physical order. GIL provides a \p semantic_at_c<K>(ColorBase) function (described later) which can operate on any model of ColorBaseConcept and returns
  501. the corresponding semantic element.
  502. \code
  503. concept ColorBaseConcept<typename T> : CopyConstructible<T>, EqualityComparable<T> {
  504. // a GIL layout (the color space and element permutation)
  505. typename layout_t;
  506. // The type of K-th element
  507. template <int K> struct kth_element_type; where Metafunction<kth_element_type>;
  508. // The result of at_c
  509. template <int K> struct kth_element_const_reference_type; where Metafunction<kth_element_const_reference_type>;
  510. template <int K> kth_element_const_reference_type<T,K>::type at_c(T);
  511. // Copy-constructible and equality comparable with other compatible color bases
  512. template <ColorBaseConcept T2> where { ColorBasesCompatibleConcept<T,T2> }
  513. T::T(T2);
  514. template <ColorBaseConcept T2> where { ColorBasesCompatibleConcept<T,T2> }
  515. bool operator==(const T&, const T2&);
  516. template <ColorBaseConcept T2> where { ColorBasesCompatibleConcept<T,T2> }
  517. bool operator!=(const T&, const T2&);
  518. };
  519. \endcode
  520. */
  521. template <typename ColorBase>
  522. struct ColorBaseConcept {
  523. void constraints() {
  524. gil_function_requires< CopyConstructible<ColorBase> >();
  525. gil_function_requires< EqualityComparable<ColorBase> >();
  526. typedef typename ColorBase::layout_t::color_space_t color_space_t;
  527. gil_function_requires<ColorSpaceConcept<color_space_t> >();
  528. typedef typename ColorBase::layout_t::channel_mapping_t channel_mapping_t;
  529. // TODO: channel_mapping_t must be an MPL RandomAccessSequence
  530. static const std::size_t num_elements = size<ColorBase>::value;
  531. typedef typename kth_element_type<ColorBase,num_elements-1>::type TN;
  532. typedef typename kth_element_const_reference_type<ColorBase,num_elements-1>::type CR;
  533. #if !defined(_MSC_VER) || _MSC_VER > 1310
  534. CR cr=at_c<num_elements-1>(cb); ignore_unused_variable_warning(cr);
  535. #endif
  536. // functions that work for every pixel (no need to require them)
  537. semantic_at_c<0>(cb);
  538. semantic_at_c<num_elements-1>(cb);
  539. // also static_max(cb), static_min(cb), static_fill(cb,value), and all variations of static_for_each(), static_generate(), static_transform()
  540. }
  541. ColorBase cb;
  542. };
  543. /// \ingroup ColorBaseConcept
  544. /// \brief Color base which allows for modifying its elements
  545. /**
  546. \code
  547. concept MutableColorBaseConcept<ColorBaseConcept T> : Assignable<T>, Swappable<T> {
  548. template <int K> struct kth_element_reference_type; where Metafunction<kth_element_reference_type>;
  549. template <int K> kth_element_reference_type<kth_element_type<T,K>::type>::type at_c(T);
  550. template <ColorBaseConcept T2> where { ColorBasesCompatibleConcept<T,T2> }
  551. T& operator=(T&, const T2&);
  552. };
  553. \endcode
  554. */
  555. template <typename ColorBase>
  556. struct MutableColorBaseConcept {
  557. void constraints() {
  558. gil_function_requires< ColorBaseConcept<ColorBase> >();
  559. gil_function_requires< Assignable<ColorBase> >();
  560. gil_function_requires< Swappable<ColorBase> >();
  561. typedef typename kth_element_reference_type<ColorBase, 0>::type CR;
  562. #if !defined(_MSC_VER) || _MSC_VER > 1310
  563. CR r=at_c<0>(cb);
  564. at_c<0>(cb)=r;
  565. #endif
  566. }
  567. ColorBase cb;
  568. };
  569. /// \ingroup ColorBaseConcept
  570. /// \brief Color base that also has a default-constructor. Refines Regular
  571. /**
  572. \code
  573. concept ColorBaseValueConcept<typename T> : MutableColorBaseConcept<T>, Regular<T> {
  574. };
  575. \endcode
  576. */
  577. template <typename ColorBase>
  578. struct ColorBaseValueConcept {
  579. void constraints() {
  580. gil_function_requires< MutableColorBaseConcept<ColorBase> >();
  581. gil_function_requires< Regular<ColorBase> >();
  582. }
  583. };
  584. /// \ingroup ColorBaseConcept
  585. /// \brief Color base whose elements all have the same type
  586. /**
  587. \code
  588. concept HomogeneousColorBaseConcept<ColorBaseConcept CB> {
  589. // For all K in [0 ... size<C1>::value-1):
  590. // where SameType<kth_element_type<CB,K>::type, kth_element_type<CB,K+1>::type>;
  591. kth_element_const_reference_type<CB,0>::type dynamic_at_c(const CB&, std::size_t n) const;
  592. };
  593. \endcode
  594. */
  595. template <typename ColorBase>
  596. struct HomogeneousColorBaseConcept {
  597. void constraints() {
  598. gil_function_requires< ColorBaseConcept<ColorBase> >();
  599. static const std::size_t num_elements = size<ColorBase>::value;
  600. typedef typename kth_element_type<ColorBase,0>::type T0;
  601. typedef typename kth_element_type<ColorBase,num_elements-1>::type TN;
  602. BOOST_STATIC_ASSERT((is_same<T0,TN>::value)); // better than nothing
  603. typedef typename kth_element_const_reference_type<ColorBase,0>::type CRef0;
  604. CRef0 e0=dynamic_at_c(cb,0);
  605. }
  606. ColorBase cb;
  607. };
  608. /// \ingroup ColorBaseConcept
  609. /// \brief Homogeneous color base that allows for modifying its elements
  610. /**
  611. \code
  612. concept MutableHomogeneousColorBaseConcept<ColorBaseConcept CB> : HomogeneousColorBaseConcept<CB> {
  613. kth_element_reference_type<CB,0>::type dynamic_at_c(CB&, std::size_t n);
  614. };
  615. \endcode
  616. */
  617. template <typename ColorBase>
  618. struct MutableHomogeneousColorBaseConcept {
  619. void constraints() {
  620. gil_function_requires< ColorBaseConcept<ColorBase> >();
  621. gil_function_requires< HomogeneousColorBaseConcept<ColorBase> >();
  622. typedef typename kth_element_reference_type<ColorBase, 0>::type R0;
  623. R0 x=dynamic_at_c(cb,0);
  624. dynamic_at_c(cb,0) = dynamic_at_c(cb,0);
  625. }
  626. ColorBase cb;
  627. };
  628. /// \ingroup ColorBaseConcept
  629. /// \brief Homogeneous color base that also has a default constructor. Refines Regular.
  630. /**
  631. \code
  632. concept HomogeneousColorBaseValueConcept<typename T> : MutableHomogeneousColorBaseConcept<T>, Regular<T> {
  633. };
  634. \endcode
  635. */
  636. template <typename ColorBase>
  637. struct HomogeneousColorBaseValueConcept {
  638. void constraints() {
  639. gil_function_requires< MutableHomogeneousColorBaseConcept<ColorBase> >();
  640. gil_function_requires< Regular<ColorBase> >();
  641. }
  642. };
  643. /// \ingroup ColorBaseConcept
  644. /// \brief Two color bases are compatible if they have the same color space and their elements are compatible, semantic-pairwise.
  645. /**
  646. \code
  647. concept ColorBasesCompatibleConcept<ColorBaseConcept C1, ColorBaseConcept C2> {
  648. where SameType<C1::layout_t::color_space_t, C2::layout_t::color_space_t>;
  649. // also, for all K in [0 ... size<C1>::value):
  650. // where Convertible<kth_semantic_element_type<C1,K>::type, kth_semantic_element_type<C2,K>::type>;
  651. // where Convertible<kth_semantic_element_type<C2,K>::type, kth_semantic_element_type<C1,K>::type>;
  652. };
  653. \endcode
  654. */
  655. template <typename ColorBase1, typename ColorBase2>
  656. struct ColorBasesCompatibleConcept {
  657. void constraints() {
  658. BOOST_STATIC_ASSERT((is_same<typename ColorBase1::layout_t::color_space_t,
  659. typename ColorBase2::layout_t::color_space_t>::value));
  660. // typedef typename kth_semantic_element_type<ColorBase1,0>::type e1;
  661. // typedef typename kth_semantic_element_type<ColorBase2,0>::type e2;
  662. // "e1 is convertible to e2"
  663. }
  664. };
  665. ////////////////////////////////////////////////////////////////////////////////////////
  666. ///
  667. /// PIXEL CONCEPTS
  668. ///
  669. ////////////////////////////////////////////////////////////////////////////////////////
  670. /// \brief Concept for all pixel-based GIL constructs, such as pixels, iterators, locators, views and images whose value type is a pixel
  671. /// \ingroup PixelBasedConcept
  672. /**
  673. \code
  674. concept PixelBasedConcept<typename T> {
  675. typename color_space_type<T>;
  676. where Metafunction<color_space_type<T> >;
  677. where ColorSpaceConcept<color_space_type<T>::type>;
  678. typename channel_mapping_type<T>;
  679. where Metafunction<channel_mapping_type<T> >;
  680. where ChannelMappingConcept<channel_mapping_type<T>::type>;
  681. typename is_planar<T>;
  682. where Metafunction<is_planar<T> >;
  683. where SameType<is_planar<T>::type, bool>;
  684. };
  685. \endcode
  686. */
  687. template <typename P>
  688. struct PixelBasedConcept {
  689. void constraints() {
  690. typedef typename color_space_type<P>::type color_space_t;
  691. gil_function_requires<ColorSpaceConcept<color_space_t> >();
  692. typedef typename channel_mapping_type<P>::type channel_mapping_t;
  693. gil_function_requires<ChannelMappingConcept<channel_mapping_t> >();
  694. static const bool planar = is_planar<P>::type::value; ignore_unused_variable_warning(planar);
  695. // This is not part of the concept, but should still work
  696. static const std::size_t nc = num_channels<P>::value;
  697. ignore_unused_variable_warning(nc);
  698. }
  699. };
  700. /// \brief Concept for homogeneous pixel-based GIL constructs
  701. /// \ingroup PixelBasedConcept
  702. /**
  703. \code
  704. concept HomogeneousPixelBasedConcept<PixelBasedConcept T> {
  705. typename channel_type<T>;
  706. where Metafunction<channel_type<T> >;
  707. where ChannelConcept<channel_type<T>::type>;
  708. };
  709. \endcode
  710. */
  711. template <typename P>
  712. struct HomogeneousPixelBasedConcept {
  713. void constraints() {
  714. gil_function_requires<PixelBasedConcept<P> >();
  715. typedef typename channel_type<P>::type channel_t;
  716. gil_function_requires<ChannelConcept<channel_t> >();
  717. }
  718. };
  719. /// \brief Pixel concept - A color base whose elements are channels
  720. /// \ingroup PixelConcept
  721. /**
  722. \code
  723. concept PixelConcept<typename P> : ColorBaseConcept<P>, PixelBasedConcept<P> {
  724. where is_pixel<P>::type::value==true;
  725. // where for each K [0..size<P>::value-1]:
  726. // ChannelConcept<kth_element_type<P,K> >;
  727. typename P::value_type; where PixelValueConcept<value_type>;
  728. typename P::reference; where PixelConcept<reference>;
  729. typename P::const_reference; where PixelConcept<const_reference>;
  730. static const bool P::is_mutable;
  731. template <PixelConcept P2> where { PixelConcept<P,P2> }
  732. P::P(P2);
  733. template <PixelConcept P2> where { PixelConcept<P,P2> }
  734. bool operator==(const P&, const P2&);
  735. template <PixelConcept P2> where { PixelConcept<P,P2> }
  736. bool operator!=(const P&, const P2&);
  737. };
  738. \endcode
  739. */
  740. template <typename P>
  741. struct PixelConcept {
  742. void constraints() {
  743. gil_function_requires<ColorBaseConcept<P> >();
  744. gil_function_requires<PixelBasedConcept<P> >();
  745. BOOST_STATIC_ASSERT((is_pixel<P>::value));
  746. static const bool is_mutable = P::is_mutable; ignore_unused_variable_warning(is_mutable);
  747. typedef typename P::value_type value_type;
  748. // gil_function_requires<PixelValueConcept<value_type> >();
  749. typedef typename P::reference reference;
  750. gil_function_requires<PixelConcept<typename remove_const_and_reference<reference>::type> >();
  751. typedef typename P::const_reference const_reference;
  752. gil_function_requires<PixelConcept<typename remove_const_and_reference<const_reference>::type> >();
  753. }
  754. };
  755. /// \brief Pixel concept that allows for changing its channels
  756. /// \ingroup PixelConcept
  757. /**
  758. \code
  759. concept MutablePixelConcept<PixelConcept P> : MutableColorBaseConcept<P> {
  760. where is_mutable==true;
  761. };
  762. \endcode
  763. */
  764. template <typename P>
  765. struct MutablePixelConcept {
  766. void constraints() {
  767. gil_function_requires<PixelConcept<P> >();
  768. BOOST_STATIC_ASSERT(P::is_mutable);
  769. }
  770. };
  771. /// \brief Homogeneous pixel concept
  772. /// \ingroup PixelConcept
  773. /**
  774. \code
  775. concept HomogeneousPixelConcept<PixelConcept P> : HomogeneousColorBaseConcept<P>, HomogeneousPixelBasedConcept<P> {
  776. P::template element_const_reference_type<P>::type operator[](P p, std::size_t i) const { return dynamic_at_c(p,i); }
  777. };
  778. \endcode
  779. */
  780. template <typename P>
  781. struct HomogeneousPixelConcept {
  782. void constraints() {
  783. gil_function_requires<PixelConcept<P> >();
  784. gil_function_requires<HomogeneousColorBaseConcept<P> >();
  785. gil_function_requires<HomogeneousPixelBasedConcept<P> >();
  786. p[0];
  787. }
  788. P p;
  789. };
  790. /// \brief Homogeneous pixel concept that allows for changing its channels
  791. /// \ingroup PixelConcept
  792. /**
  793. \code
  794. concept MutableHomogeneousPixelConcept<HomogeneousPixelConcept P> : MutableHomogeneousColorBaseConcept<P> {
  795. P::template element_reference_type<P>::type operator[](P p, std::size_t i) { return dynamic_at_c(p,i); }
  796. };
  797. \endcode
  798. */
  799. template <typename P>
  800. struct MutableHomogeneousPixelConcept {
  801. void constraints() {
  802. gil_function_requires<HomogeneousPixelConcept<P> >();
  803. gil_function_requires<MutableHomogeneousColorBaseConcept<P> >();
  804. p[0]=p[0];
  805. }
  806. P p;
  807. };
  808. /// \brief Pixel concept that is a Regular type
  809. /// \ingroup PixelConcept
  810. /**
  811. \code
  812. concept PixelValueConcept<PixelConcept P> : Regular<P> {
  813. where SameType<value_type,P>;
  814. };
  815. \endcode
  816. */
  817. template <typename P>
  818. struct PixelValueConcept {
  819. void constraints() {
  820. gil_function_requires<PixelConcept<P> >();
  821. gil_function_requires<Regular<P> >();
  822. }
  823. };
  824. /// \brief Homogeneous pixel concept that is a Regular type
  825. /// \ingroup PixelConcept
  826. /**
  827. \code
  828. concept HomogeneousPixelValueConcept<HomogeneousPixelConcept P> : Regular<P> {
  829. where SameType<value_type,P>;
  830. };
  831. \endcode
  832. */
  833. template <typename P>
  834. struct HomogeneousPixelValueConcept {
  835. void constraints() {
  836. gil_function_requires<HomogeneousPixelConcept<P> >();
  837. gil_function_requires<Regular<P> >();
  838. BOOST_STATIC_ASSERT((is_same<P, typename P::value_type>::value));
  839. }
  840. };
  841. namespace detail {
  842. template <typename P1, typename P2, int K>
  843. struct channels_are_pairwise_compatible : public
  844. mpl::and_<channels_are_pairwise_compatible<P1,P2,K-1>,
  845. channels_are_compatible<typename kth_semantic_element_reference_type<P1,K>::type,
  846. typename kth_semantic_element_reference_type<P2,K>::type> > {};
  847. template <typename P1, typename P2>
  848. struct channels_are_pairwise_compatible<P1,P2,-1> : public mpl::true_ {};
  849. }
  850. /// \brief Returns whether two pixels are compatible
  851. ///
  852. /// Pixels are compatible if their channels and color space types are compatible. Compatible pixels can be assigned and copy constructed from one another.
  853. /// \ingroup PixelAlgorithm
  854. template <typename P1, typename P2> // Models GIL Pixel
  855. struct pixels_are_compatible
  856. : public mpl::and_<typename color_spaces_are_compatible<typename color_space_type<P1>::type,
  857. typename color_space_type<P2>::type>::type,
  858. detail::channels_are_pairwise_compatible<P1,P2,num_channels<P1>::value-1> > {};
  859. /// \brief Concept for pixel compatibility
  860. /// Pixels are compatible if their channels and color space types are compatible. Compatible pixels can be assigned and copy constructed from one another.
  861. /// \ingroup PixelConcept
  862. /**
  863. \code
  864. concept PixelsCompatibleConcept<PixelConcept P1, PixelConcept P2> : ColorBasesCompatibleConcept<P1,P2> {
  865. // where for each K [0..size<P1>::value):
  866. // ChannelsCompatibleConcept<kth_semantic_element_type<P1,K>::type, kth_semantic_element_type<P2,K>::type>;
  867. };
  868. \endcode
  869. */
  870. template <typename P1, typename P2> // precondition: P1 and P2 model PixelConcept
  871. struct PixelsCompatibleConcept {
  872. void constraints() {
  873. BOOST_STATIC_ASSERT((pixels_are_compatible<P1,P2>::value));
  874. }
  875. };
  876. /// \brief Pixel convertible concept
  877. ///
  878. /// Convertibility is non-symmetric and implies that one pixel can be converted to another, approximating the color. Conversion is explicit and sometimes lossy.
  879. /// \ingroup PixelConcept
  880. /**
  881. \code
  882. template <PixelConcept SrcPixel, MutablePixelConcept DstPixel>
  883. concept PixelConvertibleConcept {
  884. void color_convert(const SrcPixel&, DstPixel&);
  885. };
  886. \endcode
  887. */
  888. template <typename SrcP, typename DstP>
  889. struct PixelConvertibleConcept {
  890. void constraints() {
  891. gil_function_requires<PixelConcept<SrcP> >();
  892. gil_function_requires<MutablePixelConcept<DstP> >();
  893. color_convert(src,dst);
  894. }
  895. SrcP src;
  896. DstP dst;
  897. };
  898. ////////////////////////////////////////////////////////////////////////////////////////
  899. ///
  900. /// DEREFERENCE ADAPTOR CONCEPTS
  901. ///
  902. ////////////////////////////////////////////////////////////////////////////////////////
  903. /// \ingroup PixelDereferenceAdaptorConcept
  904. /// \brief Represents a unary function object that can be invoked upon dereferencing a pixel iterator.
  905. ///
  906. /// This can perform an arbitrary computation, such as color conversion or table lookup
  907. /**
  908. \code
  909. concept PixelDereferenceAdaptorConcept<boost::UnaryFunctionConcept D>
  910. : DefaultConstructibleConcept<D>, CopyConstructibleConcept<D>, AssignableConcept<D> {
  911. typename const_t; where PixelDereferenceAdaptorConcept<const_t>;
  912. typename value_type; where PixelValueConcept<value_type>;
  913. typename reference; // may be mutable
  914. typename const_reference; // must not be mutable
  915. static const bool D::is_mutable;
  916. where Convertible<value_type,result_type>;
  917. };
  918. \endcode
  919. */
  920. template <typename D>
  921. struct PixelDereferenceAdaptorConcept {
  922. void constraints() {
  923. gil_function_requires< boost::UnaryFunctionConcept<D,
  924. typename remove_const_and_reference<typename D::result_type>::type,
  925. typename D::argument_type> >();
  926. gil_function_requires< boost::DefaultConstructibleConcept<D> >();
  927. gil_function_requires< boost::CopyConstructibleConcept<D> >();
  928. gil_function_requires< boost::AssignableConcept<D> >();
  929. gil_function_requires<PixelConcept<typename remove_const_and_reference<typename D::result_type>::type> >();
  930. typedef typename D::const_t const_t;
  931. gil_function_requires<PixelDereferenceAdaptorConcept<const_t> >();
  932. typedef typename D::value_type value_type;
  933. gil_function_requires<PixelValueConcept<value_type> >();
  934. typedef typename D::reference reference; // == PixelConcept (if you remove const and reference)
  935. typedef typename D::const_reference const_reference; // == PixelConcept (if you remove const and reference)
  936. const bool is_mutable=D::is_mutable; ignore_unused_variable_warning(is_mutable);
  937. }
  938. D d;
  939. };
  940. template <typename P>
  941. struct PixelDereferenceAdaptorArchetype : public std::unary_function<P, P> {
  942. typedef PixelDereferenceAdaptorArchetype const_t;
  943. typedef typename remove_reference<P>::type value_type;
  944. typedef typename add_reference<P>::type reference;
  945. typedef reference const_reference;
  946. static const bool is_mutable=false;
  947. P operator()(P x) const { throw; }
  948. };
  949. ////////////////////////////////////////////////////////////////////////////////////////
  950. ///
  951. /// Pixel ITERATOR CONCEPTS
  952. ///
  953. ////////////////////////////////////////////////////////////////////////////////////////
  954. /// \brief Concept for iterators, locators and views that can define a type just like the given iterator/locator/view, except it supports runtime specified step along the X navigation
  955. /// \ingroup PixelIteratorConcept
  956. /**
  957. \code
  958. concept HasDynamicXStepTypeConcept<typename T> {
  959. typename dynamic_x_step_type<T>;
  960. where Metafunction<dynamic_x_step_type<T> >;
  961. };
  962. \endcode
  963. */
  964. template <typename T>
  965. struct HasDynamicXStepTypeConcept {
  966. void constraints() {
  967. typedef typename dynamic_x_step_type<T>::type type;
  968. }
  969. };
  970. /// \brief Concept for locators and views that can define a type just like the given locator or view, except it supports runtime specified step along the Y navigation
  971. /// \ingroup PixelLocatorConcept
  972. /**
  973. \code
  974. concept HasDynamicYStepTypeConcept<typename T> {
  975. typename dynamic_y_step_type<T>;
  976. where Metafunction<dynamic_y_step_type<T> >;
  977. };
  978. \endcode
  979. */
  980. template <typename T>
  981. struct HasDynamicYStepTypeConcept {
  982. void constraints() {
  983. typedef typename dynamic_y_step_type<T>::type type;
  984. }
  985. };
  986. /// \brief Concept for locators and views that can define a type just like the given locator or view, except X and Y is swapped
  987. /// \ingroup PixelLocatorConcept
  988. /**
  989. \code
  990. concept HasTransposedTypeConcept<typename T> {
  991. typename transposed_type<T>;
  992. where Metafunction<transposed_type<T> >;
  993. };
  994. \endcode
  995. */
  996. template <typename T>
  997. struct HasTransposedTypeConcept {
  998. void constraints() {
  999. typedef typename transposed_type<T>::type type;
  1000. }
  1001. };
  1002. /// \defgroup PixelIteratorConceptPixelIterator PixelIteratorConcept
  1003. /// \ingroup PixelIteratorConcept
  1004. /// \brief STL iterator over pixels
  1005. /// \ingroup PixelIteratorConceptPixelIterator
  1006. /// \brief An STL random access traversal iterator over a model of PixelConcept.
  1007. /**
  1008. GIL's iterators must also provide the following metafunctions:
  1009. - \p const_iterator_type<Iterator>: Returns a read-only equivalent of \p Iterator
  1010. - \p iterator_is_mutable<Iterator>: Returns whether the given iterator is read-only or mutable
  1011. - \p is_iterator_adaptor<Iterator>: Returns whether the given iterator is an adaptor over another iterator. See IteratorAdaptorConcept for additional requirements of adaptors.
  1012. \code
  1013. concept PixelIteratorConcept<typename Iterator> : boost_concepts::RandomAccessTraversalConcept<Iterator>, PixelBasedConcept<Iterator> {
  1014. where PixelValueConcept<value_type>;
  1015. typename const_iterator_type<It>::type;
  1016. where PixelIteratorConcept<const_iterator_type<It>::type>;
  1017. static const bool iterator_is_mutable<It>::type::value;
  1018. static const bool is_iterator_adaptor<It>::type::value; // is it an iterator adaptor
  1019. };
  1020. \endcode
  1021. */
  1022. template <typename Iterator>
  1023. struct PixelIteratorConcept {
  1024. void constraints() {
  1025. gil_function_requires<boost_concepts::RandomAccessTraversalConcept<Iterator> >();
  1026. gil_function_requires<PixelBasedConcept<Iterator> >();
  1027. typedef typename std::iterator_traits<Iterator>::value_type value_type;
  1028. gil_function_requires<PixelValueConcept<value_type> >();
  1029. typedef typename const_iterator_type<Iterator>::type const_t;
  1030. static const bool is_mut = iterator_is_mutable<Iterator>::type::value; ignore_unused_variable_warning(is_mut);
  1031. const_t const_it(it); ignore_unused_variable_warning(const_it); // immutable iterator must be constructible from (possibly mutable) iterator
  1032. check_base(typename is_iterator_adaptor<Iterator>::type());
  1033. }
  1034. void check_base(mpl::false_) {}
  1035. void check_base(mpl::true_) {
  1036. typedef typename iterator_adaptor_get_base<Iterator>::type base_t;
  1037. gil_function_requires<PixelIteratorConcept<base_t> >();
  1038. }
  1039. Iterator it;
  1040. };
  1041. namespace detail {
  1042. template <typename Iterator> // Preconditions: Iterator Models PixelIteratorConcept
  1043. struct PixelIteratorIsMutableConcept {
  1044. void constraints() {
  1045. gil_function_requires<detail::RandomAccessIteratorIsMutableConcept<Iterator> >();
  1046. typedef typename remove_reference<typename std::iterator_traits<Iterator>::reference>::type ref;
  1047. typedef typename element_type<ref>::type channel_t;
  1048. gil_function_requires<detail::ChannelIsMutableConcept<channel_t> >();
  1049. }
  1050. };
  1051. }
  1052. /// \brief Pixel iterator that allows for changing its pixel
  1053. /// \ingroup PixelIteratorConceptPixelIterator
  1054. /**
  1055. \code
  1056. concept MutablePixelIteratorConcept<PixelIteratorConcept Iterator> : MutableRandomAccessIteratorConcept<Iterator> {};
  1057. \endcode
  1058. */
  1059. template <typename Iterator>
  1060. struct MutablePixelIteratorConcept {
  1061. void constraints() {
  1062. gil_function_requires<PixelIteratorConcept<Iterator> >();
  1063. gil_function_requires<detail::PixelIteratorIsMutableConcept<Iterator> >();
  1064. }
  1065. };
  1066. namespace detail {
  1067. // Iterators that can be used as the base of memory_based_step_iterator require some additional functions
  1068. template <typename Iterator> // Preconditions: Iterator Models boost_concepts::RandomAccessTraversalConcept
  1069. struct RandomAccessIteratorIsMemoryBasedConcept {
  1070. void constraints() {
  1071. std::ptrdiff_t bs=memunit_step(it); ignore_unused_variable_warning(bs);
  1072. it=memunit_advanced(it,3);
  1073. std::ptrdiff_t bd=memunit_distance(it,it); ignore_unused_variable_warning(bd);
  1074. memunit_advance(it,3);
  1075. // for performace you may also provide a customized implementation of memunit_advanced_ref
  1076. }
  1077. Iterator it;
  1078. };
  1079. }
  1080. /// \defgroup PixelIteratorConceptStepIterator StepIteratorConcept
  1081. /// \ingroup PixelIteratorConcept
  1082. /// \brief Iterator that advances by a specified step
  1083. /// \brief Concept of a random-access iterator that can be advanced in memory units (bytes or bits)
  1084. /// \ingroup PixelIteratorConceptStepIterator
  1085. /**
  1086. \code
  1087. concept MemoryBasedIteratorConcept<boost_concepts::RandomAccessTraversalConcept Iterator> {
  1088. typename byte_to_memunit<Iterator>; where metafunction<byte_to_memunit<Iterator> >;
  1089. std::ptrdiff_t memunit_step(const Iterator&);
  1090. std::ptrdiff_t memunit_distance(const Iterator& , const Iterator&);
  1091. void memunit_advance(Iterator&, std::ptrdiff_t diff);
  1092. Iterator memunit_advanced(const Iterator& p, std::ptrdiff_t diff) { Iterator tmp; memunit_advance(tmp,diff); return tmp; }
  1093. Iterator::reference memunit_advanced_ref(const Iterator& p, std::ptrdiff_t diff) { return *memunit_advanced(p,diff); }
  1094. };
  1095. \endcode
  1096. */
  1097. template <typename Iterator>
  1098. struct MemoryBasedIteratorConcept {
  1099. void constraints() {
  1100. gil_function_requires<boost_concepts::RandomAccessTraversalConcept<Iterator> >();
  1101. gil_function_requires<detail::RandomAccessIteratorIsMemoryBasedConcept<Iterator> >();
  1102. }
  1103. };
  1104. /// \brief Step iterator concept
  1105. ///
  1106. /// Step iterators are iterators that have a set_step method
  1107. /// \ingroup PixelIteratorConceptStepIterator
  1108. /**
  1109. \code
  1110. concept StepIteratorConcept<boost_concepts::ForwardTraversalConcept Iterator> {
  1111. template <Integral D> void Iterator::set_step(D step);
  1112. };
  1113. \endcode
  1114. */
  1115. template <typename Iterator>
  1116. struct StepIteratorConcept {
  1117. void constraints() {
  1118. gil_function_requires<boost_concepts::ForwardTraversalConcept<Iterator> >();
  1119. it.set_step(0);
  1120. }
  1121. Iterator it;
  1122. };
  1123. /// \brief Step iterator that allows for modifying its current value
  1124. ///
  1125. /// \ingroup PixelIteratorConceptStepIterator
  1126. /**
  1127. \code
  1128. concept MutableStepIteratorConcept<Mutable_ForwardIteratorConcept Iterator> : StepIteratorConcept<Iterator> {};
  1129. \endcode
  1130. */
  1131. template <typename Iterator>
  1132. struct MutableStepIteratorConcept {
  1133. void constraints() {
  1134. gil_function_requires<StepIteratorConcept<Iterator> >();
  1135. gil_function_requires<detail::ForwardIteratorIsMutableConcept<Iterator> >();
  1136. }
  1137. };
  1138. /// \defgroup PixelIteratorConceptIteratorAdaptor IteratorAdaptorConcept
  1139. /// \ingroup PixelIteratorConcept
  1140. /// \brief Adaptor over another iterator
  1141. /// \ingroup PixelIteratorConceptIteratorAdaptor
  1142. /// \brief Iterator adaptor is a forward iterator adapting another forward iterator.
  1143. /**
  1144. In addition to GIL iterator requirements, GIL iterator adaptors must provide the following metafunctions:
  1145. - \p is_iterator_adaptor<Iterator>: Returns \p mpl::true_
  1146. - \p iterator_adaptor_get_base<Iterator>: Returns the base iterator type
  1147. - \p iterator_adaptor_rebind<Iterator,NewBase>: Replaces the base iterator with the new one
  1148. The adaptee can be obtained from the iterator via the "base()" method.
  1149. \code
  1150. concept IteratorAdaptorConcept<boost_concepts::ForwardTraversalConcept Iterator> {
  1151. where SameType<is_iterator_adaptor<Iterator>::type, mpl::true_>;
  1152. typename iterator_adaptor_get_base<Iterator>;
  1153. where Metafunction<iterator_adaptor_get_base<Iterator> >;
  1154. where boost_concepts::ForwardTraversalConcept<iterator_adaptor_get_base<Iterator>::type>;
  1155. typename another_iterator;
  1156. typename iterator_adaptor_rebind<Iterator,another_iterator>::type;
  1157. where boost_concepts::ForwardTraversalConcept<another_iterator>;
  1158. where IteratorAdaptorConcept<iterator_adaptor_rebind<Iterator,another_iterator>::type>;
  1159. const iterator_adaptor_get_base<Iterator>::type& Iterator::base() const;
  1160. };
  1161. \endcode
  1162. */
  1163. template <typename Iterator>
  1164. struct IteratorAdaptorConcept {
  1165. void constraints() {
  1166. gil_function_requires<boost_concepts::ForwardTraversalConcept<Iterator> >();
  1167. typedef typename iterator_adaptor_get_base<Iterator>::type base_t;
  1168. gil_function_requires<boost_concepts::ForwardTraversalConcept<base_t> >();
  1169. BOOST_STATIC_ASSERT(is_iterator_adaptor<Iterator>::value);
  1170. typedef typename iterator_adaptor_rebind<Iterator, void*>::type rebind_t;
  1171. base_t base=it.base(); ignore_unused_variable_warning(base);
  1172. }
  1173. Iterator it;
  1174. };
  1175. /// \brief Iterator adaptor that is mutable
  1176. /// \ingroup PixelIteratorConceptIteratorAdaptor
  1177. /**
  1178. \code
  1179. concept MutableIteratorAdaptorConcept<Mutable_ForwardIteratorConcept Iterator> : IteratorAdaptorConcept<Iterator> {};
  1180. \endcode
  1181. */
  1182. template <typename Iterator>
  1183. struct MutableIteratorAdaptorConcept {
  1184. void constraints() {
  1185. gil_function_requires<IteratorAdaptorConcept<Iterator> >();
  1186. gil_function_requires<detail::ForwardIteratorIsMutableConcept<Iterator> >();
  1187. }
  1188. };
  1189. ////////////////////////////////////////////////////////////////////////////////////////
  1190. ///
  1191. /// LOCATOR CONCEPTS
  1192. ///
  1193. ////////////////////////////////////////////////////////////////////////////////////////
  1194. /// \defgroup LocatorNDConcept RandomAccessNDLocatorConcept
  1195. /// \ingroup PixelLocatorConcept
  1196. /// \brief N-dimensional locator
  1197. /// \defgroup Locator2DConcept RandomAccess2DLocatorConcept
  1198. /// \ingroup PixelLocatorConcept
  1199. /// \brief 2-dimensional locator
  1200. /// \defgroup PixelLocator2DConcept PixelLocatorConcept
  1201. /// \ingroup PixelLocatorConcept
  1202. /// \brief 2-dimensional locator over pixel data
  1203. /// \ingroup LocatorNDConcept
  1204. /// \brief N-dimensional locator over immutable values
  1205. /**
  1206. \code
  1207. concept RandomAccessNDLocatorConcept<Regular Loc> {
  1208. typename value_type; // value over which the locator navigates
  1209. typename reference; // result of dereferencing
  1210. typename difference_type; where PointNDConcept<difference_type>; // return value of operator-.
  1211. typename const_t; // same as Loc, but operating over immutable values
  1212. typename cached_location_t; // type to store relative location (for efficient repeated access)
  1213. typename point_t = difference_type;
  1214. static const size_t num_dimensions; // dimensionality of the locator
  1215. where num_dimensions = point_t::num_dimensions;
  1216. // The difference_type and iterator type along each dimension. The iterators may only differ in
  1217. // difference_type. Their value_type must be the same as Loc::value_type
  1218. template <size_t D> struct axis {
  1219. typename coord_t = point_t::axis<D>::coord_t;
  1220. typename iterator; where RandomAccessTraversalConcept<iterator>; // iterator along D-th axis.
  1221. where iterator::value_type == value_type;
  1222. };
  1223. // Defines the type of a locator similar to this type, except it invokes Deref upon dereferencing
  1224. template <PixelDereferenceAdaptorConcept Deref> struct add_deref {
  1225. typename type; where RandomAccessNDLocatorConcept<type>;
  1226. static type make(const Loc& loc, const Deref& deref);
  1227. };
  1228. Loc& operator+=(Loc&, const difference_type&);
  1229. Loc& operator-=(Loc&, const difference_type&);
  1230. Loc operator+(const Loc&, const difference_type&);
  1231. Loc operator-(const Loc&, const difference_type&);
  1232. reference operator*(const Loc&);
  1233. reference operator[](const Loc&, const difference_type&);
  1234. // Storing relative location for faster repeated access and accessing it
  1235. cached_location_t Loc::cache_location(const difference_type&) const;
  1236. reference operator[](const Loc&,const cached_location_t&);
  1237. // Accessing iterators along a given dimension at the current location or at a given offset
  1238. template <size_t D> axis<D>::iterator& Loc::axis_iterator();
  1239. template <size_t D> axis<D>::iterator const& Loc::axis_iterator() const;
  1240. template <size_t D> axis<D>::iterator Loc::axis_iterator(const difference_type&) const;
  1241. };
  1242. \endcode
  1243. */
  1244. template <typename Loc>
  1245. struct RandomAccessNDLocatorConcept {
  1246. void constraints() {
  1247. gil_function_requires< Regular<Loc> >();
  1248. typedef typename Loc::value_type value_type;
  1249. typedef typename Loc::reference reference; // result of dereferencing
  1250. typedef typename Loc::difference_type difference_type; // result of operator-(pixel_locator, pixel_locator)
  1251. typedef typename Loc::cached_location_t cached_location_t; // type used to store relative location (to allow for more efficient repeated access)
  1252. typedef typename Loc::const_t const_t; // same as this type, but over const values
  1253. typedef typename Loc::point_t point_t; // same as difference_type
  1254. static const std::size_t N=Loc::num_dimensions; ignore_unused_variable_warning(N);
  1255. typedef typename Loc::template axis<0>::iterator first_it_type;
  1256. typedef typename Loc::template axis<N-1>::iterator last_it_type;
  1257. gil_function_requires<boost_concepts::RandomAccessTraversalConcept<first_it_type> >();
  1258. gil_function_requires<boost_concepts::RandomAccessTraversalConcept<last_it_type> >();
  1259. // point_t must be an N-dimensional point, each dimension of which must have the same type as difference_type of the corresponding iterator
  1260. gil_function_requires<PointNDConcept<point_t> >();
  1261. BOOST_STATIC_ASSERT(point_t::num_dimensions==N);
  1262. BOOST_STATIC_ASSERT((is_same<typename std::iterator_traits<first_it_type>::difference_type, typename point_t::template axis<0>::coord_t>::value));
  1263. BOOST_STATIC_ASSERT((is_same<typename std::iterator_traits<last_it_type>::difference_type, typename point_t::template axis<N-1>::coord_t>::value));
  1264. difference_type d;
  1265. loc+=d;
  1266. loc-=d;
  1267. loc=loc+d;
  1268. loc=loc-d;
  1269. reference r1=loc[d]; ignore_unused_variable_warning(r1);
  1270. reference r2=*loc; ignore_unused_variable_warning(r2);
  1271. cached_location_t cl=loc.cache_location(d); ignore_unused_variable_warning(cl);
  1272. reference r3=loc[d]; ignore_unused_variable_warning(r3);
  1273. first_it_type fi=loc.template axis_iterator<0>();
  1274. fi=loc.template axis_iterator<0>(d);
  1275. last_it_type li=loc.template axis_iterator<N-1>();
  1276. li=loc.template axis_iterator<N-1>(d);
  1277. typedef PixelDereferenceAdaptorArchetype<typename Loc::value_type> deref_t;
  1278. typedef typename Loc::template add_deref<deref_t>::type dtype;
  1279. //gil_function_requires<RandomAccessNDLocatorConcept<dtype> >(); // infinite recursion
  1280. }
  1281. Loc loc;
  1282. };
  1283. /// \ingroup Locator2DConcept
  1284. /// \brief 2-dimensional locator over immutable values
  1285. /**
  1286. \code
  1287. concept RandomAccess2DLocatorConcept<RandomAccessNDLocatorConcept Loc> {
  1288. where num_dimensions==2;
  1289. where Point2DConcept<point_t>;
  1290. typename x_iterator = axis<0>::iterator;
  1291. typename y_iterator = axis<1>::iterator;
  1292. typename x_coord_t = axis<0>::coord_t;
  1293. typename y_coord_t = axis<1>::coord_t;
  1294. // Only available to locators that have dynamic step in Y
  1295. //Loc::Loc(const Loc& loc, y_coord_t);
  1296. // Only available to locators that have dynamic step in X and Y
  1297. //Loc::Loc(const Loc& loc, x_coord_t, y_coord_t, bool transposed=false);
  1298. x_iterator& Loc::x();
  1299. x_iterator const& Loc::x() const;
  1300. y_iterator& Loc::y();
  1301. y_iterator const& Loc::y() const;
  1302. x_iterator Loc::x_at(const difference_type&) const;
  1303. y_iterator Loc::y_at(const difference_type&) const;
  1304. Loc Loc::xy_at(const difference_type&) const;
  1305. // x/y versions of all methods that can take difference type
  1306. x_iterator Loc::x_at(x_coord_t, y_coord_t) const;
  1307. y_iterator Loc::y_at(x_coord_t, y_coord_t) const;
  1308. Loc Loc::xy_at(x_coord_t, y_coord_t) const;
  1309. reference operator()(const Loc&, x_coord_t, y_coord_t);
  1310. cached_location_t Loc::cache_location(x_coord_t, y_coord_t) const;
  1311. bool Loc::is_1d_traversable(x_coord_t width) const;
  1312. y_coord_t Loc::y_distance_to(const Loc& loc2, x_coord_t x_diff) const;
  1313. };
  1314. \endcode
  1315. */
  1316. template <typename Loc>
  1317. struct RandomAccess2DLocatorConcept {
  1318. void constraints() {
  1319. gil_function_requires<RandomAccessNDLocatorConcept<Loc> >();
  1320. BOOST_STATIC_ASSERT(Loc::num_dimensions==2);
  1321. typedef typename dynamic_x_step_type<Loc>::type dynamic_x_step_t;
  1322. typedef typename dynamic_y_step_type<Loc>::type dynamic_y_step_t;
  1323. typedef typename transposed_type<Loc>::type transposed_t;
  1324. typedef typename Loc::cached_location_t cached_location_t;
  1325. gil_function_requires<Point2DConcept<typename Loc::point_t> >();
  1326. typedef typename Loc::x_iterator x_iterator;
  1327. typedef typename Loc::y_iterator y_iterator;
  1328. typedef typename Loc::x_coord_t x_coord_t;
  1329. typedef typename Loc::y_coord_t y_coord_t;
  1330. x_coord_t xd=0; ignore_unused_variable_warning(xd);
  1331. y_coord_t yd=0; ignore_unused_variable_warning(yd);
  1332. typename Loc::difference_type d;
  1333. typename Loc::reference r=loc(xd,yd); ignore_unused_variable_warning(r);
  1334. dynamic_x_step_t loc2(dynamic_x_step_t(), yd);
  1335. dynamic_x_step_t loc3(dynamic_x_step_t(), xd, yd);
  1336. typedef typename dynamic_y_step_type<typename dynamic_x_step_type<transposed_t>::type>::type dynamic_xy_step_transposed_t;
  1337. dynamic_xy_step_transposed_t loc4(loc, xd,yd,true);
  1338. bool is_contiguous=loc.is_1d_traversable(xd); ignore_unused_variable_warning(is_contiguous);
  1339. loc.y_distance_to(loc, xd);
  1340. loc=loc.xy_at(d);
  1341. loc=loc.xy_at(xd,yd);
  1342. x_iterator xit=loc.x_at(d);
  1343. xit=loc.x_at(xd,yd);
  1344. xit=loc.x();
  1345. y_iterator yit=loc.y_at(d);
  1346. yit=loc.y_at(xd,yd);
  1347. yit=loc.y();
  1348. cached_location_t cl=loc.cache_location(xd,yd); ignore_unused_variable_warning(cl);
  1349. }
  1350. Loc loc;
  1351. };
  1352. /// \ingroup PixelLocator2DConcept
  1353. /// \brief GIL's 2-dimensional locator over immutable GIL pixels
  1354. /**
  1355. \code
  1356. concept PixelLocatorConcept<RandomAccess2DLocatorConcept Loc> {
  1357. where PixelValueConcept<value_type>;
  1358. where PixelIteratorConcept<x_iterator>;
  1359. where PixelIteratorConcept<y_iterator>;
  1360. where x_coord_t == y_coord_t;
  1361. typename coord_t = x_coord_t;
  1362. };
  1363. \endcode
  1364. */
  1365. template <typename Loc>
  1366. struct PixelLocatorConcept {
  1367. void constraints() {
  1368. gil_function_requires< RandomAccess2DLocatorConcept<Loc> >();
  1369. gil_function_requires< PixelIteratorConcept<typename Loc::x_iterator> >();
  1370. gil_function_requires< PixelIteratorConcept<typename Loc::y_iterator> >();
  1371. typedef typename Loc::coord_t coord_t;
  1372. BOOST_STATIC_ASSERT((is_same<typename Loc::x_coord_t, typename Loc::y_coord_t>::value));
  1373. }
  1374. Loc loc;
  1375. };
  1376. namespace detail {
  1377. template <typename Loc> // preconditions: Loc Models RandomAccessNDLocatorConcept
  1378. struct RandomAccessNDLocatorIsMutableConcept {
  1379. void constraints() {
  1380. gil_function_requires<detail::RandomAccessIteratorIsMutableConcept<typename Loc::template axis<0>::iterator> >();
  1381. gil_function_requires<detail::RandomAccessIteratorIsMutableConcept<typename Loc::template axis<Loc::num_dimensions-1>::iterator> >();
  1382. typename Loc::difference_type d; initialize_it(d);
  1383. typename Loc::value_type v;initialize_it(v);
  1384. typename Loc::cached_location_t cl=loc.cache_location(d);
  1385. *loc=v;
  1386. loc[d]=v;
  1387. loc[cl]=v;
  1388. }
  1389. Loc loc;
  1390. };
  1391. template <typename Loc> // preconditions: Loc Models RandomAccess2DLocatorConcept
  1392. struct RandomAccess2DLocatorIsMutableConcept {
  1393. void constraints() {
  1394. gil_function_requires<detail::RandomAccessNDLocatorIsMutableConcept<Loc> >();
  1395. typename Loc::x_coord_t xd=0; ignore_unused_variable_warning(xd);
  1396. typename Loc::y_coord_t yd=0; ignore_unused_variable_warning(yd);
  1397. typename Loc::value_type v; initialize_it(v);
  1398. loc(xd,yd)=v;
  1399. }
  1400. Loc loc;
  1401. };
  1402. }
  1403. /// \ingroup LocatorNDConcept
  1404. /// \brief N-dimensional locator over mutable pixels
  1405. /**
  1406. \code
  1407. concept MutableRandomAccessNDLocatorConcept<RandomAccessNDLocatorConcept Loc> {
  1408. where Mutable<reference>;
  1409. };
  1410. \endcode
  1411. */
  1412. template <typename Loc>
  1413. struct MutableRandomAccessNDLocatorConcept {
  1414. void constraints() {
  1415. gil_function_requires<RandomAccessNDLocatorConcept<Loc> >();
  1416. gil_function_requires<detail::RandomAccessNDLocatorIsMutableConcept<Loc> >();
  1417. }
  1418. };
  1419. /// \ingroup Locator2DConcept
  1420. /// \brief 2-dimensional locator over mutable pixels
  1421. /**
  1422. \code
  1423. concept MutableRandomAccess2DLocatorConcept<RandomAccess2DLocatorConcept Loc> : MutableRandomAccessNDLocatorConcept<Loc> {};
  1424. \endcode
  1425. */
  1426. template <typename Loc>
  1427. struct MutableRandomAccess2DLocatorConcept {
  1428. void constraints() {
  1429. gil_function_requires< RandomAccess2DLocatorConcept<Loc> >();
  1430. gil_function_requires<detail::RandomAccess2DLocatorIsMutableConcept<Loc> >();
  1431. }
  1432. };
  1433. /// \ingroup PixelLocator2DConcept
  1434. /// \brief GIL's 2-dimensional locator over mutable GIL pixels
  1435. /**
  1436. \code
  1437. concept MutablePixelLocatorConcept<PixelLocatorConcept Loc> : MutableRandomAccess2DLocatorConcept<Loc> {};
  1438. \endcode
  1439. */
  1440. template <typename Loc>
  1441. struct MutablePixelLocatorConcept {
  1442. void constraints() {
  1443. gil_function_requires<PixelLocatorConcept<Loc> >();
  1444. gil_function_requires<detail::RandomAccess2DLocatorIsMutableConcept<Loc> >();
  1445. }
  1446. };
  1447. ////////////////////////////////////////////////////////////////////////////////////////
  1448. ///
  1449. /// IMAGE VIEW CONCEPTS
  1450. ///
  1451. ////////////////////////////////////////////////////////////////////////////////////////
  1452. /// \defgroup ImageViewNDConcept ImageViewNDLocatorConcept
  1453. /// \ingroup ImageViewConcept
  1454. /// \brief N-dimensional range
  1455. /// \defgroup ImageView2DConcept ImageView2DConcept
  1456. /// \ingroup ImageViewConcept
  1457. /// \brief 2-dimensional range
  1458. /// \defgroup PixelImageViewConcept ImageViewConcept
  1459. /// \ingroup ImageViewConcept
  1460. /// \brief 2-dimensional range over pixel data
  1461. /// \ingroup ImageViewNDConcept
  1462. /// \brief N-dimensional view over immutable values
  1463. /**
  1464. \code
  1465. concept RandomAccessNDImageViewConcept<Regular View> {
  1466. typename value_type;
  1467. typename reference; // result of dereferencing
  1468. typename difference_type; // result of operator-(iterator,iterator) (1-dimensional!)
  1469. typename const_t; where RandomAccessNDImageViewConcept<View>; // same as View, but over immutable values
  1470. typename point_t; where PointNDConcept<point_t>; // N-dimensional point
  1471. typename locator; where RandomAccessNDLocatorConcept<locator>; // N-dimensional locator.
  1472. typename iterator; where RandomAccessTraversalConcept<iterator>; // 1-dimensional iterator over all values
  1473. typename reverse_iterator; where RandomAccessTraversalConcept<reverse_iterator>;
  1474. typename size_type; // the return value of size()
  1475. // Equivalent to RandomAccessNDLocatorConcept::axis
  1476. template <size_t D> struct axis {
  1477. typename coord_t = point_t::axis<D>::coord_t;
  1478. typename iterator; where RandomAccessTraversalConcept<iterator>; // iterator along D-th axis.
  1479. where SameType<coord_t, iterator::difference_type>;
  1480. where SameType<iterator::value_type,value_type>;
  1481. };
  1482. // Defines the type of a view similar to this type, except it invokes Deref upon dereferencing
  1483. template <PixelDereferenceAdaptorConcept Deref> struct add_deref {
  1484. typename type; where RandomAccessNDImageViewConcept<type>;
  1485. static type make(const View& v, const Deref& deref);
  1486. };
  1487. static const size_t num_dimensions = point_t::num_dimensions;
  1488. // Create from a locator at the top-left corner and dimensions
  1489. View::View(const locator&, const point_type&);
  1490. size_type View::size() const; // total number of elements
  1491. reference operator[](View, const difference_type&) const; // 1-dimensional reference
  1492. iterator View::begin() const;
  1493. iterator View::end() const;
  1494. reverse_iterator View::rbegin() const;
  1495. reverse_iterator View::rend() const;
  1496. iterator View::at(const point_t&);
  1497. point_t View::dimensions() const; // number of elements along each dimension
  1498. bool View::is_1d_traversable() const; // can an iterator over the first dimension visit each value? I.e. are there gaps between values?
  1499. // iterator along a given dimension starting at a given point
  1500. template <size_t D> View::axis<D>::iterator View::axis_iterator(const point_t&) const;
  1501. reference operator()(View,const point_t&) const;
  1502. };
  1503. \endcode
  1504. */
  1505. template <typename View>
  1506. struct RandomAccessNDImageViewConcept {
  1507. void constraints() {
  1508. gil_function_requires< Regular<View> >();
  1509. typedef typename View::value_type value_type;
  1510. typedef typename View::reference reference; // result of dereferencing
  1511. typedef typename View::difference_type difference_type; // result of operator-(1d_iterator,1d_iterator)
  1512. typedef typename View::const_t const_t; // same as this type, but over const values
  1513. typedef typename View::point_t point_t; // N-dimensional point
  1514. typedef typename View::locator locator; // N-dimensional locator
  1515. typedef typename View::iterator iterator;
  1516. typedef typename View::reverse_iterator reverse_iterator;
  1517. typedef typename View::size_type size_type;
  1518. static const std::size_t N=View::num_dimensions;
  1519. gil_function_requires<RandomAccessNDLocatorConcept<locator> >();
  1520. gil_function_requires<boost_concepts::RandomAccessTraversalConcept<iterator> >();
  1521. gil_function_requires<boost_concepts::RandomAccessTraversalConcept<reverse_iterator> >();
  1522. typedef typename View::template axis<0>::iterator first_it_type;
  1523. typedef typename View::template axis<N-1>::iterator last_it_type;
  1524. gil_function_requires<boost_concepts::RandomAccessTraversalConcept<first_it_type> >();
  1525. gil_function_requires<boost_concepts::RandomAccessTraversalConcept<last_it_type> >();
  1526. // BOOST_STATIC_ASSERT((typename std::iterator_traits<first_it_type>::difference_type, typename point_t::template axis<0>::coord_t>::value));
  1527. // BOOST_STATIC_ASSERT((typename std::iterator_traits< last_it_type>::difference_type, typename point_t::template axis<N-1>::coord_t>::value));
  1528. // point_t must be an N-dimensional point, each dimension of which must have the same type as difference_type of the corresponding iterator
  1529. gil_function_requires<PointNDConcept<point_t> >();
  1530. BOOST_STATIC_ASSERT(point_t::num_dimensions==N);
  1531. BOOST_STATIC_ASSERT((is_same<typename std::iterator_traits<first_it_type>::difference_type, typename point_t::template axis<0>::coord_t>::value));
  1532. BOOST_STATIC_ASSERT((is_same<typename std::iterator_traits<last_it_type>::difference_type, typename point_t::template axis<N-1>::coord_t>::value));
  1533. point_t p;
  1534. locator lc;
  1535. iterator it;
  1536. reverse_iterator rit;
  1537. difference_type d; detail::initialize_it(d); ignore_unused_variable_warning(d);
  1538. View(p,lc); // view must be constructible from a locator and a point
  1539. p=view.dimensions();
  1540. lc=view.pixels();
  1541. size_type sz=view.size(); ignore_unused_variable_warning(sz);
  1542. bool is_contiguous=view.is_1d_traversable(); ignore_unused_variable_warning(is_contiguous);
  1543. it=view.begin();
  1544. it=view.end();
  1545. rit=view.rbegin();
  1546. rit=view.rend();
  1547. reference r1=view[d]; ignore_unused_variable_warning(r1); // 1D access
  1548. reference r2=view(p); ignore_unused_variable_warning(r2); // 2D access
  1549. // get 1-D iterator of any dimension at a given pixel location
  1550. first_it_type fi=view.template axis_iterator<0>(p); ignore_unused_variable_warning(fi);
  1551. last_it_type li=view.template axis_iterator<N-1>(p); ignore_unused_variable_warning(li);
  1552. typedef PixelDereferenceAdaptorArchetype<typename View::value_type> deref_t;
  1553. typedef typename View::template add_deref<deref_t>::type dtype;
  1554. }
  1555. View view;
  1556. };
  1557. /// \ingroup ImageView2DConcept
  1558. /// \brief 2-dimensional view over immutable values
  1559. /**
  1560. \code
  1561. concept RandomAccess2DImageViewConcept<RandomAccessNDImageViewConcept View> {
  1562. where num_dimensions==2;
  1563. typename x_iterator = axis<0>::iterator;
  1564. typename y_iterator = axis<1>::iterator;
  1565. typename x_coord_t = axis<0>::coord_t;
  1566. typename y_coord_t = axis<1>::coord_t;
  1567. typename xy_locator = locator;
  1568. x_coord_t View::width() const;
  1569. y_coord_t View::height() const;
  1570. // X-navigation
  1571. x_iterator View::x_at(const point_t&) const;
  1572. x_iterator View::row_begin(y_coord_t) const;
  1573. x_iterator View::row_end (y_coord_t) const;
  1574. // Y-navigation
  1575. y_iterator View::y_at(const point_t&) const;
  1576. y_iterator View::col_begin(x_coord_t) const;
  1577. y_iterator View::col_end (x_coord_t) const;
  1578. // navigating in 2D
  1579. xy_locator View::xy_at(const point_t&) const;
  1580. // (x,y) versions of all methods taking point_t
  1581. View::View(x_coord_t,y_coord_t,const locator&);
  1582. iterator View::at(x_coord_t,y_coord_t) const;
  1583. reference operator()(View,x_coord_t,y_coord_t) const;
  1584. xy_locator View::xy_at(x_coord_t,y_coord_t) const;
  1585. x_iterator View::x_at(x_coord_t,y_coord_t) const;
  1586. y_iterator View::y_at(x_coord_t,y_coord_t) const;
  1587. };
  1588. \endcode
  1589. */
  1590. template <typename View>
  1591. struct RandomAccess2DImageViewConcept {
  1592. void constraints() {
  1593. gil_function_requires<RandomAccessNDImageViewConcept<View> >();
  1594. BOOST_STATIC_ASSERT(View::num_dimensions==2);
  1595. // TODO: This executes the requirements for RandomAccessNDLocatorConcept again. Fix it to improve compile time
  1596. gil_function_requires<RandomAccess2DLocatorConcept<typename View::locator> >();
  1597. typedef typename dynamic_x_step_type<View>::type dynamic_x_step_t;
  1598. typedef typename dynamic_y_step_type<View>::type dynamic_y_step_t;
  1599. typedef typename transposed_type<View>::type transposed_t;
  1600. typedef typename View::x_iterator x_iterator;
  1601. typedef typename View::y_iterator y_iterator;
  1602. typedef typename View::x_coord_t x_coord_t;
  1603. typedef typename View::y_coord_t y_coord_t;
  1604. typedef typename View::xy_locator xy_locator;
  1605. x_coord_t xd=0; ignore_unused_variable_warning(xd);
  1606. y_coord_t yd=0; ignore_unused_variable_warning(yd);
  1607. x_iterator xit;
  1608. y_iterator yit;
  1609. typename View::point_t d;
  1610. View(xd,yd,xy_locator()); // constructible with width, height, 2d_locator
  1611. xy_locator lc=view.xy_at(xd,yd);
  1612. lc=view.xy_at(d);
  1613. typename View::reference r=view(xd,yd); ignore_unused_variable_warning(r);
  1614. xd=view.width();
  1615. yd=view.height();
  1616. xit=view.x_at(d);
  1617. xit=view.x_at(xd,yd);
  1618. xit=view.row_begin(xd);
  1619. xit=view.row_end(xd);
  1620. yit=view.y_at(d);
  1621. yit=view.y_at(xd,yd);
  1622. yit=view.col_begin(xd);
  1623. yit=view.col_end(xd);
  1624. }
  1625. View view;
  1626. };
  1627. /// \ingroup PixelImageViewConcept
  1628. /// \brief GIL's 2-dimensional view over immutable GIL pixels
  1629. /**
  1630. \code
  1631. concept ImageViewConcept<RandomAccess2DImageViewConcept View> {
  1632. where PixelValueConcept<value_type>;
  1633. where PixelIteratorConcept<x_iterator>;
  1634. where PixelIteratorConcept<y_iterator>;
  1635. where x_coord_t == y_coord_t;
  1636. typename coord_t = x_coord_t;
  1637. std::size_t View::num_channels() const;
  1638. };
  1639. \endcode
  1640. */
  1641. template <typename View>
  1642. struct ImageViewConcept {
  1643. void constraints() {
  1644. gil_function_requires<RandomAccess2DImageViewConcept<View> >();
  1645. // TODO: This executes the requirements for RandomAccess2DLocatorConcept again. Fix it to improve compile time
  1646. gil_function_requires<PixelLocatorConcept<typename View::xy_locator> >();
  1647. BOOST_STATIC_ASSERT((is_same<typename View::x_coord_t, typename View::y_coord_t>::value));
  1648. typedef typename View::coord_t coord_t; // 1D difference type (same for all dimensions)
  1649. std::size_t num_chan = view.num_channels(); ignore_unused_variable_warning(num_chan);
  1650. }
  1651. View view;
  1652. };
  1653. namespace detail {
  1654. template <typename View> // Preconditions: View Models RandomAccessNDImageViewConcept
  1655. struct RandomAccessNDImageViewIsMutableConcept {
  1656. void constraints() {
  1657. gil_function_requires<detail::RandomAccessNDLocatorIsMutableConcept<typename View::locator> >();
  1658. gil_function_requires<detail::RandomAccessIteratorIsMutableConcept<typename View::iterator> >();
  1659. gil_function_requires<detail::RandomAccessIteratorIsMutableConcept<typename View::reverse_iterator> >();
  1660. gil_function_requires<detail::RandomAccessIteratorIsMutableConcept<typename View::template axis<0>::iterator> >();
  1661. gil_function_requires<detail::RandomAccessIteratorIsMutableConcept<typename View::template axis<View::num_dimensions-1>::iterator> >();
  1662. typename View::difference_type diff; initialize_it(diff); ignore_unused_variable_warning(diff);
  1663. typename View::point_t pt;
  1664. typename View::value_type v; initialize_it(v);
  1665. view[diff]=v;
  1666. view(pt)=v;
  1667. }
  1668. View view;
  1669. };
  1670. template <typename View> // preconditions: View Models RandomAccessNDImageViewConcept
  1671. struct RandomAccess2DImageViewIsMutableConcept {
  1672. void constraints() {
  1673. gil_function_requires<detail::RandomAccessNDImageViewIsMutableConcept<View> >();
  1674. typename View::x_coord_t xd=0; ignore_unused_variable_warning(xd);
  1675. typename View::y_coord_t yd=0; ignore_unused_variable_warning(yd);
  1676. typename View::value_type v; initialize_it(v);
  1677. view(xd,yd)=v;
  1678. }
  1679. View view;
  1680. };
  1681. template <typename View> // preconditions: View Models ImageViewConcept
  1682. struct PixelImageViewIsMutableConcept {
  1683. void constraints() {
  1684. gil_function_requires<detail::RandomAccess2DImageViewIsMutableConcept<View> >();
  1685. }
  1686. };
  1687. }
  1688. /// \ingroup ImageViewNDConcept
  1689. /// \brief N-dimensional view over mutable values
  1690. /**
  1691. \code
  1692. concept MutableRandomAccessNDImageViewConcept<RandomAccessNDImageViewConcept View> {
  1693. where Mutable<reference>;
  1694. };
  1695. \endcode
  1696. */
  1697. template <typename View>
  1698. struct MutableRandomAccessNDImageViewConcept {
  1699. void constraints() {
  1700. gil_function_requires<RandomAccessNDImageViewConcept<View> >();
  1701. gil_function_requires<detail::RandomAccessNDImageViewIsMutableConcept<View> >();
  1702. }
  1703. };
  1704. /// \ingroup ImageView2DConcept
  1705. /// \brief 2-dimensional view over mutable values
  1706. /**
  1707. \code
  1708. concept MutableRandomAccess2DImageViewConcept<RandomAccess2DImageViewConcept View> : MutableRandomAccessNDImageViewConcept<View> {};
  1709. \endcode
  1710. */
  1711. template <typename View>
  1712. struct MutableRandomAccess2DImageViewConcept {
  1713. void constraints() {
  1714. gil_function_requires<RandomAccess2DImageViewConcept<View> >();
  1715. gil_function_requires<detail::RandomAccess2DImageViewIsMutableConcept<View> >();
  1716. }
  1717. };
  1718. /// \ingroup PixelImageViewConcept
  1719. /// \brief GIL's 2-dimensional view over mutable GIL pixels
  1720. /**
  1721. \code
  1722. concept MutableImageViewConcept<ImageViewConcept View> : MutableRandomAccess2DImageViewConcept<View> {};
  1723. \endcode
  1724. */
  1725. template <typename View>
  1726. struct MutableImageViewConcept {
  1727. void constraints() {
  1728. gil_function_requires<ImageViewConcept<View> >();
  1729. gil_function_requires<detail::PixelImageViewIsMutableConcept<View> >();
  1730. }
  1731. };
  1732. /// \brief Returns whether two views are compatible
  1733. ///
  1734. /// Views are compatible if their pixels are compatible. Compatible views can be assigned and copy constructed from one another.
  1735. template <typename V1, typename V2> // Model ImageViewConcept
  1736. struct views_are_compatible : public pixels_are_compatible<typename V1::value_type, typename V2::value_type> {};
  1737. /// \brief Views are compatible if they have the same color spaces and compatible channel values. Constness and layout are not important for compatibility
  1738. /// \ingroup ImageViewConcept
  1739. /**
  1740. \code
  1741. concept ViewsCompatibleConcept<ImageViewConcept V1, ImageViewConcept V2> {
  1742. where PixelsCompatibleConcept<V1::value_type, P2::value_type>;
  1743. };
  1744. \endcode
  1745. */
  1746. template <typename V1, typename V2>
  1747. struct ViewsCompatibleConcept {
  1748. void constraints() {
  1749. BOOST_STATIC_ASSERT((views_are_compatible<V1,V2>::value));
  1750. }
  1751. };
  1752. ////////////////////////////////////////////////////////////////////////////////////////
  1753. ///
  1754. /// IMAGE CONCEPTS
  1755. ///
  1756. ////////////////////////////////////////////////////////////////////////////////////////
  1757. /// \ingroup ImageConcept
  1758. /// \brief N-dimensional container of values
  1759. /**
  1760. \code
  1761. concept RandomAccessNDImageConcept<typename Img> : Regular<Img> {
  1762. typename view_t; where MutableRandomAccessNDImageViewConcept<view_t>;
  1763. typename const_view_t = view_t::const_t;
  1764. typename point_t = view_t::point_t;
  1765. typename value_type = view_t::value_type;
  1766. typename allocator_type;
  1767. Img::Img(point_t dims, std::size_t alignment=1);
  1768. Img::Img(point_t dims, value_type fill_value, std::size_t alignment);
  1769. void Img::recreate(point_t new_dims, std::size_t alignment=1);
  1770. void Img::recreate(point_t new_dims, value_type fill_value, std::size_t alignment);
  1771. const point_t& Img::dimensions() const;
  1772. const const_view_t& const_view(const Img&);
  1773. const view_t& view(Img&);
  1774. };
  1775. \endcode
  1776. */
  1777. template <typename Img>
  1778. struct RandomAccessNDImageConcept {
  1779. void constraints() {
  1780. gil_function_requires<Regular<Img> >();
  1781. typedef typename Img::view_t view_t;
  1782. gil_function_requires<MutableRandomAccessNDImageViewConcept<view_t> >();
  1783. typedef typename Img::const_view_t const_view_t;
  1784. typedef typename Img::value_type pixel_t;
  1785. typedef typename Img::point_t point_t;
  1786. gil_function_requires<PointNDConcept<point_t> >();
  1787. const_view_t cv = const_view(img); ignore_unused_variable_warning(cv);
  1788. view_t v = view(img); ignore_unused_variable_warning(v);
  1789. pixel_t fill_value;
  1790. point_t pt=img.dimensions();
  1791. Img im1(pt);
  1792. Img im2(pt,1);
  1793. Img im3(pt,fill_value,1);
  1794. img.recreate(pt);
  1795. img.recreate(pt,1);
  1796. img.recreate(pt,fill_value,1);
  1797. }
  1798. Img img;
  1799. };
  1800. /// \ingroup ImageConcept
  1801. /// \brief 2-dimensional container of values
  1802. /**
  1803. \code
  1804. concept RandomAccess2DImageConcept<RandomAccessNDImageConcept Img> {
  1805. typename x_coord_t = const_view_t::x_coord_t;
  1806. typename y_coord_t = const_view_t::y_coord_t;
  1807. Img::Img(x_coord_t width, y_coord_t height, std::size_t alignment=1);
  1808. Img::Img(x_coord_t width, y_coord_t height, value_type fill_value, std::size_t alignment);
  1809. x_coord_t Img::width() const;
  1810. y_coord_t Img::height() const;
  1811. void Img::recreate(x_coord_t width, y_coord_t height, std::size_t alignment=1);
  1812. void Img::recreate(x_coord_t width, y_coord_t height, value_type fill_value, std::size_t alignment);
  1813. };
  1814. \endcode
  1815. */
  1816. template <typename Img>
  1817. struct RandomAccess2DImageConcept {
  1818. void constraints() {
  1819. gil_function_requires<RandomAccessNDImageConcept<Img> >();
  1820. typedef typename Img::x_coord_t x_coord_t;
  1821. typedef typename Img::y_coord_t y_coord_t;
  1822. typedef typename Img::value_type value_t;
  1823. gil_function_requires<MutableRandomAccess2DImageViewConcept<typename Img::view_t> >();
  1824. x_coord_t w=img.width();
  1825. y_coord_t h=img.height();
  1826. value_t fill_value;
  1827. Img im1(w,h);
  1828. Img im2(w,h,1);
  1829. Img im3(w,h,fill_value,1);
  1830. img.recreate(w,h);
  1831. img.recreate(w,h,1);
  1832. img.recreate(w,h,fill_value,1);
  1833. }
  1834. Img img;
  1835. };
  1836. /// \ingroup ImageConcept
  1837. /// \brief 2-dimensional image whose value type models PixelValueConcept
  1838. /**
  1839. \code
  1840. concept ImageConcept<RandomAccess2DImageConcept Img> {
  1841. where MutableImageViewConcept<view_t>;
  1842. typename coord_t = view_t::coord_t;
  1843. };
  1844. \endcode
  1845. */
  1846. template <typename Img>
  1847. struct ImageConcept {
  1848. void constraints() {
  1849. gil_function_requires<RandomAccess2DImageConcept<Img> >();
  1850. gil_function_requires<MutableImageViewConcept<typename Img::view_t> >();
  1851. typedef typename Img::coord_t coord_t;
  1852. BOOST_STATIC_ASSERT(num_channels<Img>::value == mpl::size<typename color_space_type<Img>::type>::value);
  1853. BOOST_STATIC_ASSERT((is_same<coord_t, typename Img::x_coord_t>::value));
  1854. BOOST_STATIC_ASSERT((is_same<coord_t, typename Img::y_coord_t>::value));
  1855. }
  1856. Img img;
  1857. };
  1858. } } // namespace boost::gil
  1859. #endif