Tagged Questions
The color-mapping tag has no wiki summary.
5
votes
1answer
283 views
Non-linear scaling of a colormap to enhance contrast
The following python code creates a heatmap of a matrix that contains normally distributed values
import numpy as np
from matplotlib import pylab as plt
np.random.seed(123) #make sure we all have ...
5
votes
4answers
386 views
Mapping a list of numeric values to colors
I have a list of numeric values. I may normalize the values if needed.
I need to transform this list to a list of colors (in HSL, RGB or any other color model — I can always do conversion ...
3
votes
1answer
39 views
Making a static legend, independent of the actual plot
I'm plotting two surfaces in Matlab, the ground level which is constant and the water level which is changing in time.
I use an if statement to change the colormap of the water with increasing ...
2
votes
1answer
68 views
Transparent colormap
I would like to get a density distribution plot like this
with the alpha channel instead of the blue channel like this
I found this code but it doesn't works :(
theCM = cm.get_cmap()
...
2
votes
2answers
251 views
matplotlib - black & white colormap (with dashes, dots etc)
I am using matplotlib to create 2d line-plots. For the purposes of publication, I would like to have those plots in black and white (not grayscale), and I am struggling to find a non-intrusive ...
2
votes
1answer
513 views
creating a color coded time chart using colorbar and colormaps in python
I'm trying to make a time tracking chart based on a daily time tracking file that I used. I wrote code that crawls through my files and generates a few lists.
endTimes is a list of times that a ...
1
vote
1answer
238 views
Matlab: How to assign different colormaps/colorbars to different surfaces in the same Figure
I am fairly new to Matlab and have a few questions.
I got two surfaces and a plane in the same figure.
I want to use different colormap and colorbar for b and another colormap and colorbar for c. s is ...
1
vote
4answers
255 views
How to get the “real” colors when exporting a GDI drawing to bmp
I'm developing a ASP.Net web handler that returns images making a in-memory System.Windows.Forms.Control and then exports the rendered control as a bitmap compressed to PNG, using the method ...
0
votes
0answers
61 views
How to change an WriteableBitmap's indexed palette at runtime?
We have succesfully used WPF's WriteableBitmap class for an application where we update in real-time the output of a 2D image processing algorithm. Currently the WriteableBitmap has a 480x480 size; ...
0
votes
1answer
63 views
How to draw image with colormap in MS Chart or other .Net chart component?
How to programatically create image with colormap like the picture below? Color are different in each rectangle to present different value based on color-mapping.
Tried to do it with MS Chart, but no ...