我想知道如何简单地反转给定色彩Map表的颜色顺序,以便与plot_surface一起使用。
wydwbb8l1#
标准的色彩Map表也都有相反的版本。它们的名字都是一样的,但最后都加上了_r。(文档在这里)
_r
643ylb082#
解决方案非常简单。假设你想使用“秋季”色彩Map方案。标准版本:
cmap = matplotlib.cm.autumn
要反转色彩Map表的色谱,请使用get_cmap()函数并将'_r'附加到色彩Map表标题,如下所示:
cmap_reversed = matplotlib.cm.get_cmap('autumn_r')
qgzx9mmu3#
在matplotlib中,颜色Map表不是一个列表,但它包含了它的颜色列表colormap.colors。模块matplotlib.colors提供了一个函数ListedColormap()来从列表中生成颜色Map表。所以你可以通过执行以下操作来反转任何颜色Map表:
colormap.colors
matplotlib.colors
ListedColormap()
colormap_r = ListedColormap(colormap.colors[::-1])
fcy6dtqo4#
从Matplotlib 2.0开始,有一个reversed()方法用于ListedColormap和LinearSegmentedColorMap对象,所以你可以只做cmap_reversed = cmap.reversed()这里是文档。
reversed()
ListedColormap
LinearSegmentedColorMap
cmap_reversed = cmap.reversed()
ybzsozfc5#
由于LinearSegmentedColormaps是基于红、绿色和蓝色的字典,因此有必要反转每个项目:
LinearSegmentedColormaps
import matplotlib.pyplot as pltimport matplotlib as mpldef 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
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')
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')
编辑
我没有得到user3445587的评论。它在彩虹色图上工作得很好:
cmap = mpl.cm.jetcmap_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')
cmap = mpl.cm.jet
cmap_r = reverse_colourmap(cmap)
cb1 = mpl.colorbar.ColorbarBase(ax1, cmap = cmap, norm=norm,orientation='horizontal')
cb2 = mpl.colorbar.ColorbarBase(ax2, cmap = cmap_r, norm=norm, orientation='horizontal')
但它特别适合自定义声明的颜色Map表,因为自定义声明的颜色Map表没有默认的_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')
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)
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')
wsewodh26#
目前还没有内置的方法来反转任意颜色Map,但一个简单的解决方案是实际上不修改颜色条,而是创建一个反转的Normalize对象:
from matplotlib.colors import Normalizeclass InvertedNormalize(Normalize): def __call__(self, *args, **kwargs): return 1 - super(InvertedNormalize, self).__call__(*args, **kwargs)
from matplotlib.colors import Normalize
class InvertedNormalize(Normalize):
def __call__(self, *args, **kwargs):
return 1 - super(InvertedNormalize, self).__call__(*args, **kwargs)
然后你可以使用plot_surface和其他Matplotlib绘图函数,例如:
plot_surface
inverted_norm = InvertedNormalize(vmin=10, vmax=100)ax.plot_surface(..., cmap=<your colormap>, norm=inverted_norm)
inverted_norm = InvertedNormalize(vmin=10, vmax=100)
ax.plot_surface(..., cmap=<your colormap>, norm=inverted_norm)
这将适用于任何Matplotlib色彩Map表。
qqrboqgw7#
有两种类型的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))}
>>> 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>}
>>> 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)}
_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
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))
return mpl.colors.LinearSegmentedColormap(name, cm.revcmap(cmap._segmentdata))
7条答案
按热度按时间wydwbb8l1#
标准的色彩Map表也都有相反的版本。它们的名字都是一样的,但最后都加上了
_r
。(文档在这里)643ylb082#
解决方案非常简单。假设你想使用“秋季”色彩Map方案。标准版本:
要反转色彩Map表的色谱,请使用get_cmap()函数并将'_r'附加到色彩Map表标题,如下所示:
qgzx9mmu3#
在matplotlib中,颜色Map表不是一个列表,但它包含了它的颜色列表
colormap.colors
。模块matplotlib.colors
提供了一个函数ListedColormap()
来从列表中生成颜色Map表。所以你可以通过执行以下操作来反转任何颜色Map表:fcy6dtqo4#
从Matplotlib 2.0开始,有一个
reversed()
方法用于ListedColormap
和LinearSegmentedColorMap
对象,所以你可以只做cmap_reversed = cmap.reversed()
这里是文档。
ybzsozfc5#
由于
LinearSegmentedColormaps
是基于红、绿色和蓝色的字典,因此有必要反转每个项目:看看它的工作原理:
编辑
我没有得到user3445587的评论。它在彩虹色图上工作得很好:
但它特别适合自定义声明的颜色Map表,因为自定义声明的颜色Map表没有默认的
_r
。下面的例子取自http://matplotlib.org/examples/pylab_examples/custom_cmap.html:wsewodh26#
目前还没有内置的方法来反转任意颜色Map,但一个简单的解决方案是实际上不修改颜色条,而是创建一个反转的Normalize对象:
然后你可以使用
plot_surface
和其他Matplotlib绘图函数,例如:这将适用于任何Matplotlib色彩Map表。
qqrboqgw7#
有两种类型的LinearSegmentedColormaps。在某些情况下,_segmentdata是显式给出的,例如,对于jet:
对于rainbow,_segmentdata如下所示:
我们可以在matplotlib的源代码中找到这些函数,它们如下所示:
你想要的一切都已经在matplotlib中完成了,只需要调用cm.revcmap,它会反转这两种类型的segmentdata,所以
应该做的工作-你可以简单地创建一个新的LinearSegmentData。在revcmap中,基于SegmentData的函数的反转是用
而其他列表则像往常一样颠倒
所以实际上你想要的是