“matplotlib colormap transparan putih menjadi hitam” Kode Jawaban

matplotlib colormap transparan putih menjadi hitam

c_white = matplotlib.colors.colorConverter.to_rgba('white',alpha = 0)
            c_black= matplotlib.colors.colorConverter.to_rgba('black',alpha = 1)
            cmap_rb = matplotlib.colors.LinearSegmentedColormap.from_list('rb_cmap',[c_white,c_black],512)
            
            
            pl = plt.pcolor(mp1,cmap=cmap_rb)
Careful Cassowary

matplotlib colormap transparan putih menjadi hitam

from matplotlib.colors import ListedColormap

cmap = np.zeros([256, 4])
cmap[:, 3] = np.linspace(0, 1, 256)
cmap = ListedColormap(cmap)
Careful Cassowary

Jawaban yang mirip dengan “matplotlib colormap transparan putih menjadi hitam”

Pertanyaan yang mirip dengan “matplotlib colormap transparan putih menjadi hitam”

Lebih banyak jawaban terkait untuk “matplotlib colormap transparan putih menjadi hitam” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya