Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuki-koyama/tinycolormap
A header-only, single-file library for colormaps written in C++11
https://github.com/yuki-koyama/tinycolormap
color colormap header-only map viridis visualization
Last synced: 2 days ago
JSON representation
A header-only, single-file library for colormaps written in C++11
- Host: GitHub
- URL: https://github.com/yuki-koyama/tinycolormap
- Owner: yuki-koyama
- License: mit
- Created: 2018-04-05T03:38:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-21T16:38:29.000Z (2 months ago)
- Last Synced: 2024-10-13T01:27:40.357Z (22 days ago)
- Topics: color, colormap, header-only, map, viridis, visualization
- Language: C++
- Homepage:
- Size: 166 KB
- Stars: 324
- Watchers: 10
- Forks: 42
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeCppGameDev - tinycolormap - only, single-file library for colormaps written in C++11 (Graphics)
README
# tinycolormap
![macOS](https://github.com/yuki-koyama/tinycolormap/workflows/macOS/badge.svg)
![Ubuntu](https://github.com/yuki-koyama/tinycolormap/workflows/Ubuntu/badge.svg)
![GitHub](https://img.shields.io/github/license/yuki-koyama/tinycolormap)A header-only, single-file library for colormaps written in C++11.
## Available Colormaps
### Matlab
| Name | Sample |
|:--------:|:------------------------------:|
| Parula | ![](docs/samples/Parula.png) |
| Heat | ![](docs/samples/Heat.png) |
| Hot | ![](docs/samples/Hot.png) |
| Jet | ![](docs/samples/Jet.png) |
| Gray | ![](docs/samples/Gray.png) |
| HSV | ![](docs/samples/HSV.png) |Reference:
The HSV colormap is cyclic and is particularly useful for plotting angles or phases because the color transition from 1 to 0 is smooth. A phase wrap would thus not appear as a sharp edge.
### Matplotlib
| Name | Sample |
|:--------:|:------------------------------:|
| Magma | ![](docs/samples/Magma.png) |
| Inferno | ![](docs/samples/Inferno.png) |
| Plasma | ![](docs/samples/Plasma.png) |
| Viridis | ![](docs/samples/Viridis.png) |
| Cividis | ![](docs/samples/Cividis.png) |These colormaps are designed to be perceptually uniform (even in black-and-white printing) and friendly to colorblindness. Cividis is specially designed such that it enables as identical interpretation to both those without a CVD and those with red-green colorblindness as possible.
Magma, Inferno, Plasma, Viridis are released under CC0 by Nathaniel J. Smith, Stefan van der Walt, and (in the case of Viridis) Eric Firing: . Their python code is adapted for the use in C++11.
Cividis is released under CC0 by the authors of PLOS ONE paper (Jamie R. Nuñez, Christopher R. Anderton, Ryan S. Renslow): . We incorporated the LUT into C++11.
### GitHub
| Name | Sample |
|:--------:|:------------------------------:|
| Github | ![](docs/samples/Github.png) |This colormap is designed to mimic the color scheme used in GitHub contributions visualization.
### Other
| Name | Sample |
|:--------:|:------------------------------:|
| Turbo | ![](docs/samples/Turbo.png) |Turbo is developed as an alternative to the Jet colormap by Anton Mikhailov (Google LLC). See [the blog post](https://ai.googleblog.com/2019/08/turbo-improved-rainbow-colormap-for.html) for the details. [The original lookup table](https://gist.github.com/mikhailov-work/6a308c20e494d9e0ccc29036b28faa7a) is released under the Apache 2.0 license. We merged it and re-licensed the part under the MIT license for consistency.
| Name | Sample |
|:---------:|:-------------------------------:|
| Cubehelix | ![](docs/samples/Cubehelix.png) |Cubehelix is developed by Dr. Dave Green and is designed for astronomical intensity images. It shows a continuous increase in perceived intensity when shown in color or greyscale. This implementation uses Green's "default" scheme (start: 0.5, rotations: -1.5, hue: 1.0, gamma: 1.0). See [the original publication](https://ui.adsabs.harvard.edu/abs/2011BASI...39..289G/abstract) for details.
## Dependency
tinycolormap does not have any dependencies except for C++11 standard library.
## Installation
tinycolormap is a header-only library, so you do not need to compile it. You can use it by
- Adding the path to the `include` directory in the cloned tinycolormap repository to your project's include paths, or
- Copying the file `tinycolormap.hpp` to your project (note that tinycolormap consists of only that single file).If your project is managed by Cmake , `add_subdirectory` or `ExternalProject_Add` commands are useful as tinycolormap provides `CMakeLists.txt` for this purpose.
## Usage
The core function of this library is
```cpp
inline Color GetColor(double x, ColormapType type);
```
where `x` should be between `0.0` and `1.0` (otherwise, it will be cropped), and `type` is the target colormap type like `Viridis` (default) and `Heat`.Here is a working code:
```cpp
#include
#includeint main()
{
// Define a target value. This value should be in [0, 1]; otherwise, it will be cropped to 0 or 1.
const double value = 0.5;// Get the mapped color. Here, Viridis is specified as the colormap.
const tinycolormap::Color color = tinycolormap::GetColor(value, tinycolormap::ColormapType::Viridis);// Print the RGB values. Each value is in [0, 1].
std::cout << "r = " << color.r() << ", g = " << color.g() << ", b = " << color.b() << std::endl;return 0;
}
```### Quantized colors
tinycolormap is also capable of producing quantized colormaps (i.e. the ones that have visible boundaries between colors) based on the user specified number of levels. Below is the example of the quantized Parula colormap using 10 quantization levels:
| Name | Sample |
|:--------:|:---------------------------------------:|
| Parula | ![](docs/samples/Parula_10levels.png) |Note that the supported range for number of levels is `[1, 255]`.
Here is an example code that uses colormap quantization:
```cpp
int main()
{
// Define a target value. This value should be in [0, 1]; otherwise, it will be cropped to 0 or 1.
const double value = 0.5;// Define number of levels for the colormap quantization. This value should be in [1, 255]; otherwise, it will be cropped to 1 or 255.
const unsigned int num_levels = 10;// Get the mapped color. Here, Parula is specified as the colormap.
const tinycolormap::Color color = tinycolormap::GetQuantizedColor(value, num_levels, tinycolormap::ColormapType::Parula);// Print the RGB values. Each value is in [0, 1].
std::cout << "r = " << color.r() << ", g = " << color.g() << ", b = " << color.b() << std::endl;return 0;
}
```## Options for External Libraries Integration
### Qt5 Support
When `TINYCOLORMAP_WITH_QT5` is defined before including `tinycolormap.hpp`, for example,
```cpp
#define TINYCOLORMAP_WITH_QT5
#include
```
(or `TINYCOLORMAP_WITH_QT5` CMake option is `ON`), this library offers an additional utility function:
```cpp
const QColor color = tinycolormap::GetColor(x).ConvertToQColor();
```### Eigen Support
When `TINYCOLORMAP_WITH_EIGEN` is defined before including `tinycolormap.hpp`, for example,
```cpp
#define TINYCOLORMAP_WITH_EIGEN
#include
```
(or `TINYCOLORMAP_WITH_EIGEN` CMake option is `ON`), this library offers an additional utility function:
```cpp
const Eigen::Vector3d color = tinycolormap::GetColor(x).ConvertToEigen();
```### Qt5 and Eigen Support
When both Qt5 and Eigen are available, this library offers additional utility functions:
```cpp
inline QImage CreateMatrixVisualization(const Eigen::MatrixXd& matrix);
inline void ExportMatrixVisualization(const Eigen::MatrixXd& matrix, const std::string& path);
```### GLM Support
When `TINYCOLORMAP_WITH_GLM` is defined before including `tinycolormap.hpp`, for example,
```cpp
#define TINYCOLORMAP_WITH_GLM
#include
```
(or `TINYCOLORMAP_WITH_GLM` CMake option is `ON`), this library offers an additional utility function:
```cpp
const glm::vec3 color = tinycolormap::GetColor(x).ConvertToGLM();
```## Tools (Optional)
This repository includes the following optional tools:
- PNG Exporter: This tool exports all the available colormaps as PNG images.
### Tools Build Instruction
The optional tools are managed by CMake . They can be built by, for example,
```bash
mkdir build
cd build
cmake [PATH_TO_TINYCOLORMAP] -DTINYCOLORMAP_BUILD_TOOLS=ON
make
```## Projects using tinycolormap
- riCOM
- OpenSiv3D
- SLiM
- Neper: Polycrystal Generation and Meshing
- Unblending (Pacific Graphics 2018)
- OptiMo (CHI 2018)
- Sequential Line Search (SIGGRAPH 2017)
- SelPh (CHI 2016)
- VisOpt Slider (UIST 2014)## License
The MIT License (except for `tools/png-exporter/stb_image_write.h`, which is released under public domain).
## Contribute
Pull requests are welcome.