Scientific colormaps for python, without dependencies
Project description
cmap
Scientific colormaps for python, with no dependencies beyond numpy.
With cmap
, you can use any of the colormaps from
matplotlib,
cmocean,
colorbrewer,
crameri,
seaborn, and a host
of other collections in your python code, without having to install matplotlib
or any other dependencies beyond numpy.
:book: See the complete catalog
There are a number of python libraries that provide or require colormaps or basic color support, but they all either depend on matplotlib, provide a specialized set of colormaps intended to extend those provided by matplotlib, or roll their own colormap solution that vendors/duplicates other libraries.
cmap
is a lightweight, library that provides a large collection of colormaps
with no dependencies beyond numpy. It provides exports to a number of known
third-party colormap objects, allowing it to be used across a wide range of
python visualization libraries. The intention is to provide a library that can
be used by any python library that needs colormaps, without forcing the user to
install matplotlib (while still being compatible with matplotlib and other
libraries that use matplotlib colormaps).
cmap
is strictly typed and fully tested, with a focus on good developer
experience.
Install
pip install cmap
conda install -c conda-forge cmap
Usage
See Documentation for full details.
cmap.Color
The cmap.Color
object is a simple wrapper around a tuple of RGBA scalars, with
a few convenience methods for converting to other color objects.
from cmap import Color
red = Color("red") # or a variety of other "color like" inputs
cmap.Colormap
The cmap.Colormap
object is a callable that can map a scalar value (or numpy
array of values) to an RGBA color (or a numpy array of RGBA colors). API is
intended to mimic the behavior of a
matplotlib.colors.Colormap
object (without requiring matplotlib)
In [1]: import cmap
# or a variety of other "colormap like" inputs
In [2]: cmap1 = cmap.Colormap(["red", "green", "blue"])
In [3]: cmap1(np.linspace(0,1,5))
Out[3]:
array([[1. , 0. , 0. , 1. ],
[0.50393701, 0.24900417, 0. , 1. ],
[0. , 0.50196078, 0. , 1. ],
[0. , 0.24900417, 0.50393701, 1. ],
[0. , 0. , 1. , 1. ]])
Note that the input array must be normalized from 0-1, so if you're applying a colormap
to an integer array (like an image) you must apply any contrast limits and rescale to
0-1 before passing it to a Colormap
.
Third Party Library Support
The cmap.Colormap
object has convenience methods that allow it to be used with a number of third-party colormap objects (like
matplotlib
, vispy
, napari
, plotly
, etc...).
See documentation for details.
If you would like to see support added for a particular library, please open an issue or PR.
Alternatives
Other libraries providing colormaps:
- matplotlib
- seaborn (subclasses matplotlib)
- proplot (subclasses matplotlib)
- palettable (mostly data, import doesn't depend on matplotlib, but usage largely does)
- cmocean (mostly data, outputs matplotlib colormaps)
- colorcet (mostly data, usage requires either matplotlib or bokeh)
- cmasher (requires matplotlib)
- cmyt (requires matplotlib)
- cmcrameri (requires matplotlib, wraps https://www.fabiocrameri.ch/colourmaps/)
- distinctipy (generates distinct color sets, only requires numpy)
- Farrow & Ball Matplotlib (requires matplotlib)
- mplcyberpunk (requires matplotlib)
References and Further reading
- Choosing Colormaps in Matplotlib
- A Better Default Colormap for Matplotlib | SciPy 2015 | Nathaniel Smith and Stéfan van der Walt
- blog post for above video: https://bids.github.io/colormap/
- Origins of Colormaps, Cleve Moler, February 2, 2015
- Documenting the matplotlib colormaps, @endolith
- Color Map Advice for Scientific Visualization
- https://colorcet.com/, Peter Kovesi
- Kovesi: Good Colour Maps: How to Design Them.
- https://www.fabiocrameri.ch/colourmaps/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cmap-0.1.2.tar.gz
.
File metadata
- Download URL: cmap-0.1.2.tar.gz
- Upload date:
- Size: 571.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8f3068e4eb546169747c17f8004c7cfee8bfce6925c5e0511e82411244b2610 |
|
MD5 | 9abbaa8561ca5b15a70637760ec0a854 |
|
BLAKE2b-256 | d9bce647344d1b17de4d7d23677834bfd0538659387d2b61288f4c4450be4322 |
File details
Details for the file cmap-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: cmap-0.1.2-py3-none-any.whl
- Upload date:
- Size: 614.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44d912451d67ed2866dd0b74641900ef7f498bea9eca4d1b330361339412beff |
|
MD5 | 9f62a1aa865c4c83e21d5ddf39032b89 |
|
BLAKE2b-256 | d533c4f8562ddef7d40852b96f3be2f14153ecb69f3887dfca7ad58acdb8c191 |