我正在使用 matplotlib 绘制对数归一化图像,但我希望原始原始图像数据以颜色条而不是 [0-1] 间隔表示。我觉得通过使用某种归一化对象而不是事先转换数据,有一种更 matplotlib'y 的方式来做到这一点......无论如何,原始图像中可能存在负值。
import matplotlib.pyplot as plt
import numpy as np
def log_transform(im):
'''returns log(image) scaled to the interval [0,1]'''
try:
(min, max) = (im[im > 0].min(), im.max())
if (max > min) and (max > 0):
return (np.log(im.clip(min, max)) - np.log(min)) / (np.log(max) - np.log(min))
except:
pass
return im
a = np.ones((100,100))
for i in range(100): a[i] = i
f = plt.figure()
ax = f.add_subplot(111)
res = ax.imshow(log_transform(a))
# the colorbar drawn shows [0-1], but I want to see [0-99]
cb = f.colorbar(res)
我尝试过使用 cb.set_array,但它似乎没有做任何事情,而 cb.set_clim 则完全重新调整了颜色。