viridis.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. // This file is part of libigl, a simple c++ geometry processing library.
  2. //
  3. // Copyright (C) 2017 Joe Graus <jgraus@gmu.edu>, Alec Jacobson <alecjacobson@gmail.com>
  4. //
  5. // This Source Code Form is subject to the terms of the Mozilla Public License
  6. // v. 2.0. If a copy of the MPL was not distributed with this file, You can
  7. // obtain one at http://mozilla.org/MPL/2.0/.
  8. #include "viridis.h"
  9. #include "colon.h"
  10. // One of the new matplotlib colormaps by Nathaniel J.Smith, Stefan van der Walt, and (in the case of viridis) Eric Firing.
  11. // Released under the CC0 license / public domain dedication
  12. static float viridis_cm[256][3] = {
  13. { 0.267004, 0.004874, 0.329415 },
  14. { 0.268510, 0.009605, 0.335427 },
  15. { 0.269944, 0.014625, 0.341379 },
  16. { 0.271305, 0.019942, 0.347269 },
  17. { 0.272594, 0.025563, 0.353093 },
  18. { 0.273809, 0.031497, 0.358853 },
  19. { 0.274952, 0.037752, 0.364543 },
  20. { 0.276022, 0.044167, 0.370164 },
  21. { 0.277018, 0.050344, 0.375715 },
  22. { 0.277941, 0.056324, 0.381191 },
  23. { 0.278791, 0.062145, 0.386592 },
  24. { 0.279566, 0.067836, 0.391917 },
  25. { 0.280267, 0.073417, 0.397163 },
  26. { 0.280894, 0.078907, 0.402329 },
  27. { 0.281446, 0.084320, 0.407414 },
  28. { 0.281924, 0.089666, 0.412415 },
  29. { 0.282327, 0.094955, 0.417331 },
  30. { 0.282656, 0.100196, 0.422160 },
  31. { 0.282910, 0.105393, 0.426902 },
  32. { 0.283091, 0.110553, 0.431554 },
  33. { 0.283197, 0.115680, 0.436115 },
  34. { 0.283229, 0.120777, 0.440584 },
  35. { 0.283187, 0.125848, 0.444960 },
  36. { 0.283072, 0.130895, 0.449241 },
  37. { 0.282884, 0.135920, 0.453427 },
  38. { 0.282623, 0.140926, 0.457517 },
  39. { 0.282290, 0.145912, 0.461510 },
  40. { 0.281887, 0.150881, 0.465405 },
  41. { 0.281412, 0.155834, 0.469201 },
  42. { 0.280868, 0.160771, 0.472899 },
  43. { 0.280255, 0.165693, 0.476498 },
  44. { 0.279574, 0.170599, 0.479997 },
  45. { 0.278826, 0.175490, 0.483397 },
  46. { 0.278012, 0.180367, 0.486697 },
  47. { 0.277134, 0.185228, 0.489898 },
  48. { 0.276194, 0.190074, 0.493001 },
  49. { 0.275191, 0.194905, 0.496005 },
  50. { 0.274128, 0.199721, 0.498911 },
  51. { 0.273006, 0.204520, 0.501721 },
  52. { 0.271828, 0.209303, 0.504434 },
  53. { 0.270595, 0.214069, 0.507052 },
  54. { 0.269308, 0.218818, 0.509577 },
  55. { 0.267968, 0.223549, 0.512008 },
  56. { 0.266580, 0.228262, 0.514349 },
  57. { 0.265145, 0.232956, 0.516599 },
  58. { 0.263663, 0.237631, 0.518762 },
  59. { 0.262138, 0.242286, 0.520837 },
  60. { 0.260571, 0.246922, 0.522828 },
  61. { 0.258965, 0.251537, 0.524736 },
  62. { 0.257322, 0.256130, 0.526563 },
  63. { 0.255645, 0.260703, 0.528312 },
  64. { 0.253935, 0.265254, 0.529983 },
  65. { 0.252194, 0.269783, 0.531579 },
  66. { 0.250425, 0.274290, 0.533103 },
  67. { 0.248629, 0.278775, 0.534556 },
  68. { 0.246811, 0.283237, 0.535941 },
  69. { 0.244972, 0.287675, 0.537260 },
  70. { 0.243113, 0.292092, 0.538516 },
  71. { 0.241237, 0.296485, 0.539709 },
  72. { 0.239346, 0.300855, 0.540844 },
  73. { 0.237441, 0.305202, 0.541921 },
  74. { 0.235526, 0.309527, 0.542944 },
  75. { 0.233603, 0.313828, 0.543914 },
  76. { 0.231674, 0.318106, 0.544834 },
  77. { 0.229739, 0.322361, 0.545706 },
  78. { 0.227802, 0.326594, 0.546532 },
  79. { 0.225863, 0.330805, 0.547314 },
  80. { 0.223925, 0.334994, 0.548053 },
  81. { 0.221989, 0.339161, 0.548752 },
  82. { 0.220057, 0.343307, 0.549413 },
  83. { 0.218130, 0.347432, 0.550038 },
  84. { 0.216210, 0.351535, 0.550627 },
  85. { 0.214298, 0.355619, 0.551184 },
  86. { 0.212395, 0.359683, 0.551710 },
  87. { 0.210503, 0.363727, 0.552206 },
  88. { 0.208623, 0.367752, 0.552675 },
  89. { 0.206756, 0.371758, 0.553117 },
  90. { 0.204903, 0.375746, 0.553533 },
  91. { 0.203063, 0.379716, 0.553925 },
  92. { 0.201239, 0.383670, 0.554294 },
  93. { 0.199430, 0.387607, 0.554642 },
  94. { 0.197636, 0.391528, 0.554969 },
  95. { 0.195860, 0.395433, 0.555276 },
  96. { 0.194100, 0.399323, 0.555565 },
  97. { 0.192357, 0.403199, 0.555836 },
  98. { 0.190631, 0.407061, 0.556089 },
  99. { 0.188923, 0.410910, 0.556326 },
  100. { 0.187231, 0.414746, 0.556547 },
  101. { 0.185556, 0.418570, 0.556753 },
  102. { 0.183898, 0.422383, 0.556944 },
  103. { 0.182256, 0.426184, 0.557120 },
  104. { 0.180629, 0.429975, 0.557282 },
  105. { 0.179019, 0.433756, 0.557430 },
  106. { 0.177423, 0.437527, 0.557565 },
  107. { 0.175841, 0.441290, 0.557685 },
  108. { 0.174274, 0.445044, 0.557792 },
  109. { 0.172719, 0.448791, 0.557885 },
  110. { 0.171176, 0.452530, 0.557965 },
  111. { 0.169646, 0.456262, 0.558030 },
  112. { 0.168126, 0.459988, 0.558082 },
  113. { 0.166617, 0.463708, 0.558119 },
  114. { 0.165117, 0.467423, 0.558141 },
  115. { 0.163625, 0.471133, 0.558148 },
  116. { 0.162142, 0.474838, 0.558140 },
  117. { 0.160665, 0.478540, 0.558115 },
  118. { 0.159194, 0.482237, 0.558073 },
  119. { 0.157729, 0.485932, 0.558013 },
  120. { 0.156270, 0.489624, 0.557936 },
  121. { 0.154815, 0.493313, 0.557840 },
  122. { 0.153364, 0.497000, 0.557724 },
  123. { 0.151918, 0.500685, 0.557587 },
  124. { 0.150476, 0.504369, 0.557430 },
  125. { 0.149039, 0.508051, 0.557250 },
  126. { 0.147607, 0.511733, 0.557049 },
  127. { 0.146180, 0.515413, 0.556823 },
  128. { 0.144759, 0.519093, 0.556572 },
  129. { 0.143343, 0.522773, 0.556295 },
  130. { 0.141935, 0.526453, 0.555991 },
  131. { 0.140536, 0.530132, 0.555659 },
  132. { 0.139147, 0.533812, 0.555298 },
  133. { 0.137770, 0.537492, 0.554906 },
  134. { 0.136408, 0.541173, 0.554483 },
  135. { 0.135066, 0.544853, 0.554029 },
  136. { 0.133743, 0.548535, 0.553541 },
  137. { 0.132444, 0.552216, 0.553018 },
  138. { 0.131172, 0.555899, 0.552459 },
  139. { 0.129933, 0.559582, 0.551864 },
  140. { 0.128729, 0.563265, 0.551229 },
  141. { 0.127568, 0.566949, 0.550556 },
  142. { 0.126453, 0.570633, 0.549841 },
  143. { 0.125394, 0.574318, 0.549086 },
  144. { 0.124395, 0.578002, 0.548287 },
  145. { 0.123463, 0.581687, 0.547445 },
  146. { 0.122606, 0.585371, 0.546557 },
  147. { 0.121831, 0.589055, 0.545623 },
  148. { 0.121148, 0.592739, 0.544641 },
  149. { 0.120565, 0.596422, 0.543611 },
  150. { 0.120092, 0.600104, 0.542530 },
  151. { 0.119738, 0.603785, 0.541400 },
  152. { 0.119512, 0.607464, 0.540218 },
  153. { 0.119423, 0.611141, 0.538982 },
  154. { 0.119483, 0.614817, 0.537692 },
  155. { 0.119699, 0.618490, 0.536347 },
  156. { 0.120081, 0.622161, 0.534946 },
  157. { 0.120638, 0.625828, 0.533488 },
  158. { 0.121380, 0.629492, 0.531973 },
  159. { 0.122312, 0.633153, 0.530398 },
  160. { 0.123444, 0.636809, 0.528763 },
  161. { 0.124780, 0.640461, 0.527068 },
  162. { 0.126326, 0.644107, 0.525311 },
  163. { 0.128087, 0.647749, 0.523491 },
  164. { 0.130067, 0.651384, 0.521608 },
  165. { 0.132268, 0.655014, 0.519661 },
  166. { 0.134692, 0.658636, 0.517649 },
  167. { 0.137339, 0.662252, 0.515571 },
  168. { 0.140210, 0.665859, 0.513427 },
  169. { 0.143303, 0.669459, 0.511215 },
  170. { 0.146616, 0.673050, 0.508936 },
  171. { 0.150148, 0.676631, 0.506589 },
  172. { 0.153894, 0.680203, 0.504172 },
  173. { 0.157851, 0.683765, 0.501686 },
  174. { 0.162016, 0.687316, 0.499129 },
  175. { 0.166383, 0.690856, 0.496502 },
  176. { 0.170948, 0.694384, 0.493803 },
  177. { 0.175707, 0.697900, 0.491033 },
  178. { 0.180653, 0.701402, 0.488189 },
  179. { 0.185783, 0.704891, 0.485273 },
  180. { 0.191090, 0.708366, 0.482284 },
  181. { 0.196571, 0.711827, 0.479221 },
  182. { 0.202219, 0.715272, 0.476084 },
  183. { 0.208030, 0.718701, 0.472873 },
  184. { 0.214000, 0.722114, 0.469588 },
  185. { 0.220124, 0.725509, 0.466226 },
  186. { 0.226397, 0.728888, 0.462789 },
  187. { 0.232815, 0.732247, 0.459277 },
  188. { 0.239374, 0.735588, 0.455688 },
  189. { 0.246070, 0.738910, 0.452024 },
  190. { 0.252899, 0.742211, 0.448284 },
  191. { 0.259857, 0.745492, 0.444467 },
  192. { 0.266941, 0.748751, 0.440573 },
  193. { 0.274149, 0.751988, 0.436601 },
  194. { 0.281477, 0.755203, 0.432552 },
  195. { 0.288921, 0.758394, 0.428426 },
  196. { 0.296479, 0.761561, 0.424223 },
  197. { 0.304148, 0.764704, 0.419943 },
  198. { 0.311925, 0.767822, 0.415586 },
  199. { 0.319809, 0.770914, 0.411152 },
  200. { 0.327796, 0.773980, 0.406640 },
  201. { 0.335885, 0.777018, 0.402049 },
  202. { 0.344074, 0.780029, 0.397381 },
  203. { 0.352360, 0.783011, 0.392636 },
  204. { 0.360741, 0.785964, 0.387814 },
  205. { 0.369214, 0.788888, 0.382914 },
  206. { 0.377779, 0.791781, 0.377939 },
  207. { 0.386433, 0.794644, 0.372886 },
  208. { 0.395174, 0.797475, 0.367757 },
  209. { 0.404001, 0.800275, 0.362552 },
  210. { 0.412913, 0.803041, 0.357269 },
  211. { 0.421908, 0.805774, 0.351910 },
  212. { 0.430983, 0.808473, 0.346476 },
  213. { 0.440137, 0.811138, 0.340967 },
  214. { 0.449368, 0.813768, 0.335384 },
  215. { 0.458674, 0.816363, 0.329727 },
  216. { 0.468053, 0.818921, 0.323998 },
  217. { 0.477504, 0.821444, 0.318195 },
  218. { 0.487026, 0.823929, 0.312321 },
  219. { 0.496615, 0.826376, 0.306377 },
  220. { 0.506271, 0.828786, 0.300362 },
  221. { 0.515992, 0.831158, 0.294279 },
  222. { 0.525776, 0.833491, 0.288127 },
  223. { 0.535621, 0.835785, 0.281908 },
  224. { 0.545524, 0.838039, 0.275626 },
  225. { 0.555484, 0.840254, 0.269281 },
  226. { 0.565498, 0.842430, 0.262877 },
  227. { 0.575563, 0.844566, 0.256415 },
  228. { 0.585678, 0.846661, 0.249897 },
  229. { 0.595839, 0.848717, 0.243329 },
  230. { 0.606045, 0.850733, 0.236712 },
  231. { 0.616293, 0.852709, 0.230052 },
  232. { 0.626579, 0.854645, 0.223353 },
  233. { 0.636902, 0.856542, 0.216620 },
  234. { 0.647257, 0.858400, 0.209861 },
  235. { 0.657642, 0.860219, 0.203082 },
  236. { 0.668054, 0.861999, 0.196293 },
  237. { 0.678489, 0.863742, 0.189503 },
  238. { 0.688944, 0.865448, 0.182725 },
  239. { 0.699415, 0.867117, 0.175971 },
  240. { 0.709898, 0.868751, 0.169257 },
  241. { 0.720391, 0.870350, 0.162603 },
  242. { 0.730889, 0.871916, 0.156029 },
  243. { 0.741388, 0.873449, 0.149561 },
  244. { 0.751884, 0.874951, 0.143228 },
  245. { 0.762373, 0.876424, 0.137064 },
  246. { 0.772852, 0.877868, 0.131109 },
  247. { 0.783315, 0.879285, 0.125405 },
  248. { 0.793760, 0.880678, 0.120005 },
  249. { 0.804182, 0.882046, 0.114965 },
  250. { 0.814576, 0.883393, 0.110347 },
  251. { 0.824940, 0.884720, 0.106217 },
  252. { 0.835270, 0.886029, 0.102646 },
  253. { 0.845561, 0.887322, 0.099702 },
  254. { 0.855810, 0.888601, 0.097452 },
  255. { 0.866013, 0.889868, 0.095953 },
  256. { 0.876168, 0.891125, 0.095250 },
  257. { 0.886271, 0.892374, 0.095374 },
  258. { 0.896320, 0.893616, 0.096335 },
  259. { 0.906311, 0.894855, 0.098125 },
  260. { 0.916242, 0.896091, 0.100717 },
  261. { 0.926106, 0.897330, 0.104071 },
  262. { 0.935904, 0.898570, 0.108131 },
  263. { 0.945636, 0.899815, 0.112838 },
  264. { 0.955300, 0.901065, 0.118128 },
  265. { 0.964894, 0.902323, 0.123941 },
  266. { 0.974417, 0.903590, 0.130215 },
  267. { 0.983868, 0.904867, 0.136897 },
  268. { 0.993248, 0.906157, 0.143936 }
  269. };
  270. template <typename T>
  271. IGL_INLINE void igl::viridis(const T x, T * rgb)
  272. {
  273. return viridis(x,rgb[0],rgb[1],rgb[2]);
  274. }
  275. template <typename T>
  276. IGL_INLINE void igl::viridis(const T x_in, T & r, T & g, T & b)
  277. {
  278. static const unsigned int pal = 256;
  279. const T zero = 0.0;
  280. const T one = 1.0;
  281. T x_in_clamped = static_cast<T>(std::max(zero, std::min(one, x_in)));
  282. // simple rgb lerp from palette
  283. unsigned int least = std::floor(x_in_clamped * static_cast<T>(pal - 1));
  284. unsigned int most = std::ceil(x_in_clamped * static_cast<T>(pal - 1));
  285. T _r[2] = { viridis_cm[least][0], viridis_cm[most][0] };
  286. T _g[2] = { viridis_cm[least][1], viridis_cm[most][1] };
  287. T _b[2] = { viridis_cm[least][2], viridis_cm[most][2] };
  288. T t = std::max(zero, std::min(one, fmod(x_in_clamped * static_cast<T>(pal), 1.0f)));
  289. r = std::max(zero, std::min(one, (one - t) * _r[0] + t * _r[1]));
  290. g = std::max(zero, std::min(one, (one - t) * _g[0] + t * _g[1]));
  291. b = std::max(zero, std::min(one, (one - t) * _b[0] + t * _b[1]));
  292. }
  293. template <typename DerivedZ, typename DerivedC>
  294. IGL_INLINE void igl::viridis(
  295. const Eigen::PlainObjectBase<DerivedZ> & Z,
  296. const bool normalize,
  297. Eigen::PlainObjectBase<DerivedC> & C)
  298. {
  299. const double min_z = (normalize ? Z.minCoeff()) : 0;
  300. const double max_z = (normalize ? Z.maxCoeff()) : -1;
  301. return viridis(Z, min_z, max_z, C);
  302. }
  303. template <typename DerivedZ, typename DerivedC>
  304. IGL_INLINE void igl::viridis(
  305. const Eigen::PlainObjectBase<DerivedZ> & Z,
  306. const double min_z,
  307. const double max_z,
  308. Eigen::PlainObjectBase<DerivedC> & C)
  309. {
  310. C.resize(Z.rows(),3);
  311. double denom = (max_z - min_z);
  312. denom = (denom == 0) ? 1 : denom;
  313. for(int r = 0; r < Z.rows(); ++r) {
  314. viridis(
  315. (typename DerivedC::Scalar)((-min_z + Z(r,0)) / denom),
  316. C(r,0),
  317. C(r,1),
  318. C(r,2));
  319. }
  320. }
  321. #ifdef IGL_STATIC_LIBRARY
  322. // Explicit template instantiation
  323. // generated by autoexplicit.sh
  324. template void igl::viridis<Eigen::Matrix<double, -1, 1, 0, -1, 1>, Eigen::Matrix<double, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, 1, 0, -1, 1> > const&, bool, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&);
  325. template void igl::viridis<double>(double, double*);
  326. template void igl::viridis<double>(double, double&, double&, double&);
  327. template void igl::viridis<float>(float, float*);
  328. template void igl::viridis<Eigen::Array<double, -1, 1, 0, -1, 1>, Eigen::Matrix<double, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Array<double, -1, 1, 0, -1, 1> > const&, bool, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&);
  329. template void igl::viridis<Eigen::Matrix<int, -1, 1, 0, -1, 1>, Eigen::Matrix<double, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> > const&, bool, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&);
  330. template void igl::viridis<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, bool, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&);
  331. template void igl::viridis<float>(float, float&, float&, float&);
  332. template void igl::viridis<Eigen::Matrix<float, -1, 1, 0, -1, 1>, Eigen::Matrix<double, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<float, -1, 1, 0, -1, 1> > const&, double, double, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&);
  333. template void igl::viridis<Eigen::Matrix<double, -1, 1, 0, -1, 1>, Eigen::Matrix<double, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, 1, 0, -1, 1> > const&, double, double, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&);
  334. template void igl::viridis<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1> >(Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, double, double, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&);
  335. #endif