我使用以下程序使用matplotlib读取图像文件并绘制它。但是,我不希望色标是线性比例,而是希望以对数比例绘制它。任何人都可以帮我解决这个问题。
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
import numpy as np
tiff_file = mpimg.imread('D:/image/data_001.tif')
lum_img = tiff_file[:,:,0]
imarray = np.array(tiff_file)
imgplot = plt.imshow(lum_img, cmap='spectral')
plt.colorbar()
感谢。