在matplotlib中反转色彩映射

时间:2010-07-19 08:44:22

标签: python matplotlib

我想知道如何简单地反转给定色图的颜色顺序,以便与plot_surface一起使用。

7 个答案:

答案 0 :(得分:364)

标准色彩图也都有反转版本。它们具有相同的名称,最后加上_r。 (Documentation here.

答案 1 :(得分:15)

在matplotlib中,颜色映射不是列表,但它包含颜色列表colormap.colors。模块matplotlib.colors提供函数ListedColormap()以从列表生成颜色映射。所以你可以通过

来反转任何颜色图
colormap_r = ListedColormap(colormap.colors[::-1])

答案 2 :(得分:9)

由于LinearSegmentedColormaps基于红色,绿色和蓝色字典,因此需要撤消每个项目:

import matplotlib.pyplot as plt
import matplotlib as mpl
def reverse_colourmap(cmap, name = 'my_cmap_r'):
    """
    In: 
    cmap, name 
    Out:
    my_cmap_r

    Explanation:
    t[0] goes from 0 to 1
    row i:   x  y0  y1 -> t[0] t[1] t[2]
                   /
                  /
    row i+1: x  y0  y1 -> t[n] t[1] t[2]

    so the inverse should do the same:
    row i+1: x  y1  y0 -> 1-t[0] t[2] t[1]
                   /
                  /
    row i:   x  y1  y0 -> 1-t[n] t[2] t[1]
    """        
    reverse = []
    k = []   

    for key in cmap._segmentdata:    
        k.append(key)
        channel = cmap._segmentdata[key]
        data = []

        for t in channel:                    
            data.append((1-t[0],t[2],t[1]))            
        reverse.append(sorted(data))    

    LinearL = dict(zip(k,reverse))
    my_cmap_r = mpl.colors.LinearSegmentedColormap(name, LinearL) 
    return my_cmap_r

看到它有效:

my_cmap        
<matplotlib.colors.LinearSegmentedColormap at 0xd5a0518>

my_cmap_r = reverse_colourmap(my_cmap)

fig = plt.figure(figsize=(8, 2))
ax1 = fig.add_axes([0.05, 0.80, 0.9, 0.15])
ax2 = fig.add_axes([0.05, 0.475, 0.9, 0.15])
norm = mpl.colors.Normalize(vmin=0, vmax=1)
cb1 = mpl.colorbar.ColorbarBase(ax1, cmap = my_cmap, norm=norm,orientation='horizontal')
cb2 = mpl.colorbar.ColorbarBase(ax2, cmap = my_cmap_r, norm=norm, orientation='horizontal')

enter image description here

修改

我没有收到user3445587的评论。它在彩虹色图上工作正常:

cmap = mpl.cm.jet
cmap_r = reverse_colourmap(cmap)

fig = plt.figure(figsize=(8, 2))
ax1 = fig.add_axes([0.05, 0.80, 0.9, 0.15])
ax2 = fig.add_axes([0.05, 0.475, 0.9, 0.15])
norm = mpl.colors.Normalize(vmin=0, vmax=1)
cb1 = mpl.colorbar.ColorbarBase(ax1, cmap = cmap, norm=norm,orientation='horizontal')
cb2 = mpl.colorbar.ColorbarBase(ax2, cmap = cmap_r, norm=norm, orientation='horizontal')

enter image description here

但它特别适用于自定义声明的色彩映射,因为自定义声明的色彩映射没有默认的_r。以下示例取自http://matplotlib.org/examples/pylab_examples/custom_cmap.html

cdict1 = {'red':   ((0.0, 0.0, 0.0),
                   (0.5, 0.0, 0.1),
                   (1.0, 1.0, 1.0)),

         'green': ((0.0, 0.0, 0.0),
                   (1.0, 0.0, 0.0)),

         'blue':  ((0.0, 0.0, 1.0),
                   (0.5, 0.1, 0.0),
                   (1.0, 0.0, 0.0))
         }

blue_red1 = mpl.colors.LinearSegmentedColormap('BlueRed1', cdict1)
blue_red1_r = reverse_colourmap(blue_red1)

fig = plt.figure(figsize=(8, 2))
ax1 = fig.add_axes([0.05, 0.80, 0.9, 0.15])
ax2 = fig.add_axes([0.05, 0.475, 0.9, 0.15])

norm = mpl.colors.Normalize(vmin=0, vmax=1)
cb1 = mpl.colorbar.ColorbarBase(ax1, cmap = blue_red1, norm=norm,orientation='horizontal')
cb2 = mpl.colorbar.ColorbarBase(ax2, cmap = blue_red1_r, norm=norm, orientation='horizontal')

enter image description here

答案 3 :(得分:6)

解决方案非常简单。假设你想使用&#34;秋&#34;色图方案。标准版本:

cmap = matplotlib.cm.autumn

要反转色彩图色谱,请使用get_cmap()函数并附加&#39; _r&#39;像这样的colormap标题:

cmap_reversed = matplotlib.cm.get_cmap('autumn_r')

答案 4 :(得分:4)

从Matplotlib 2.0开始,reversed()ListedColormap个对象有一个LinearSegmentedColorMap方法,所以你可以这样做

cmap_reversed = cmap.reversed()

Here是文档。

答案 5 :(得分:1)

有两种类型的LinearSegmentedColormaps。在某些情况下,_segmentdata是明确给出的,例如,对于jet:

>>> cm.jet._segmentdata
{'blue': ((0.0, 0.5, 0.5), (0.11, 1, 1), (0.34, 1, 1), (0.65, 0, 0), (1, 0, 0)), 'red': ((0.0, 0, 0), (0.35, 0, 0), (0.66, 1, 1), (0.89, 1, 1), (1, 0.5, 0.5)), 'green': ((0.0, 0, 0), (0.125, 0, 0), (0.375, 1, 1), (0.64, 1, 1), (0.91, 0, 0), (1, 0, 0))}

对于rainbow,_segmentdata如下:

>>> cm.rainbow._segmentdata
{'blue': <function <lambda> at 0x7fac32ac2b70>, 'red': <function <lambda> at 0x7fac32ac7840>, 'green': <function <lambda> at 0x7fac32ac2d08>}

我们可以在matplotlib的源代码中找到这些函数,它们以

的形式给出
_rainbow_data = {
        'red': gfunc[33],   # 33: lambda x: np.abs(2 * x - 0.5),
        'green': gfunc[13], # 13: lambda x: np.sin(x * np.pi),
        'blue': gfunc[10],  # 10: lambda x: np.cos(x * np.pi / 2)
}

你想要的一切都已在matplotlib中完成,只需调用cm.revcmap,它会反转两种类型的segmentdata,所以

cm.revcmap(cm.rainbow._segmentdata)

应该完成这项工作 - 你可以简单地从中创建一个新的LinearSegmentData。在revcmap中,基于函数的SegmentData的反转是用

完成的
def _reverser(f):
    def freversed(x):
        return f(1 - x)
    return freversed

而其他列表照常反转

valnew = [(1.0 - x, y1, y0) for x, y0, y1 in reversed(val)] 

所以实际上你想要的全部是

def reverse_colourmap(cmap, name = 'my_cmap_r'):
     return mpl.colors.LinearSegmentedColormap(name, cm.revcmap(cmap._segmentdata)) 

答案 6 :(得分:1)

没有内置的方法(还)可以反转任意颜色图,但一个简单的解决方案是实际上不修改颜色条而是创建一个反转的Normalize对象:

from matplotlib.colors import Normalize

class InvertedNormalize(Normalize):
    def __call__(self, *args, **kwargs):
        return 1 - super(InvertedNormalize, self).__call__(*args, **kwargs)

然后你可以通过plot_surface和其他Matplotlib绘图功能使用它来做这件事。

inverted_norm = InvertedNormalize(vmin=10, vmax=100)
ax.plot_surface(..., cmap=<your colormap>, norm=inverted_norm)

这适用于任何Matplotlib色彩映射。