我试图在hsv
中使用imshow
绘制matplotlib
值。问题是我使用的方法返回一个元组,其中包含hsv
所期望的三个值,但imshow
将其解释为rgb
。有没有办法告诉imshow
值是hsv
值?
这是我的代码:
import matplotlib.pyplot as plt
import numpy as np
import matplotlib.colors as mcolors
def G(x, y):
s = x + 1j*y
return (s+2)/(s**2 + s + 1)
x = np.linspace(-3, 3, 1000)
y = np.linspace(-3, 3, 1000)
xx, yy = np.meshgrid(x, y)
norm = mcolors.Normalize()
zz = G(xx, yy)
phase = np.angle(zz)
mag = np.abs(zz)
# color converter
c = mcolors.ColorConverter().to_rgb
# Custom rgb Colormap
rgb = make_colormap(
[c('red'), c('yellow'), 0.33, c('yellow'), c('green'), c('cyan'), 0.5, c('cyan'),
c('blue'), c('magenta'), 0.833, c('magenta'), c('red')])
# Turn data points into rgb values
z_data_rgb = rgb(norm(phase))
# normalizing the intensity values
intensity = norm(mag)
# defining light source
ls = mcolors.LightSource()
# plotting
plt.imshow(ls.blend_hsv(z_data_rgb, intensity), extent=[-3, 3, -3, 3])
plt.show()
如果它正常工作,根据强度值,图上的某些区域的饱和度应该低于其他区域。
由于
答案 0 :(得分:7)
为什么不使用hsv_to_rgb
并使用rgb
颜色绘图?
from matplotlib.colors import hsv_to_rgb
rgb = hsv_to_rgb(hsv)