基于Matplotlib中的像素值设置透明度

基于Matplotlib中的像素值设置透明度,第1张

基于Matplotlib中的像素值设置透明度

只是
面罩
你的“河”阵。

e.g.

rivers = np.ma.masked_where(rivers == 0, rivers)

As a quick example of overlaying two plots in this manner:

import numpy as npimport matplotlib.pyplot as pltimport matplotlib.cm as cm# Generate some data...gray_data = np.arange(10000).reshape(100, 100)masked_data = np.random.random((100,100))masked_data = np.ma.masked_where(masked_data < 0.9, masked_data)# Overlay the two imagesfig, ax = plt.subplots()ax.imshow(gray_data, cmap=cm.gray)ax.imshow(masked_data, cmap=cm.jet, interpolation='none')plt.show()

另外,另一方面,

imshow
很乐意接受RGBA格式的float。
它只希望所有内容都在0到1之间。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5617378.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存