使用imshow

时间:2016-05-30 07:45:39

标签: python python-3.x matplotlib imshow

我试图在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()

我得到以下情节: enter image description here

如果它正常工作,根据强度值,图上的某些区域的饱和度应该低于其他区域。

由于

1 个答案:

答案 0 :(得分:7)

为什么不使用hsv_to_rgb并使用rgb颜色绘图?

from matplotlib.colors import hsv_to_rgb
rgb = hsv_to_rgb(hsv)