python matplotlib包图像配色方案分享


Posted in Python onMarch 14, 2020

可选的配色方案:

Accent, Accent_r, Blues, Blues_r, BrBG, BrBG_r, BuGn, BuGn_r, BuPu, BuPu_r, CMRmap, CMRmap_r, Dark2, Dark2_r, GnBu, GnBu_r, Greens, Greens_r, Greys, Greys_r, OrRd, OrRd_r, Oranges, Oranges_r, PRGn, PRGn_r, Paired, Paired_r, Pastel1, Pastel1_r, Pastel2, Pastel2_r, PiYG, PiYG_r, PuBu, PuBuGn, PuBuGn_r, PuBu_r, PuOr, PuOr_r, PuRd, PuRd_r, Purples, Purples_r, RdBu, RdBu_r, RdGy, RdGy_r, RdPu, RdPu_r, RdYlBu, RdYlBu_r, RdYlGn, RdYlGn_r, Reds, Reds_r, Set1, Set1_r, Set2, Set2_r, Set3, Set3_r, Spectral, Spectral_r, Wistia, Wistia_r, YlGn, YlGnBu, YlGnBu_r, YlGn_r, YlOrBr, YlOrBr_r, YlOrRd, YlOrRd_r, afmhot, afmhot_r, autumn, autumn_r, binary, binary_r, bone, bone_r, brg, brg_r, bwr, bwr_r, cividis, cividis_r, cool, cool_r, coolwarm, coolwarm_r, copper, copper_r, cubehelix, cubehelix_r, flag, flag_r, gist_earth, gist_earth_r, gist_gray, gist_gray_r, gist_heat, gist_heat_r, gist_ncar, gist_ncar_r, gist_rainbow, gist_rainbow_r, gist_stern, gist_stern_r, gist_yarg, gist_yarg_r, gnuplot, gnuplot2, gnuplot2_r, gnuplot_r, gray, gray_r, hot, hot_r, hsv, hsv_r, inferno, inferno_r, jet, jet_r, magma, magma_r, nipy_spectral, nipy_spectral_r, ocean, ocean_r, pink, pink_r, plasma, plasma_r, prism, prism_r, rainbow, rainbow_r, seismic, seismic_r, spring, spring_r, summer, summer_r, tab10, tab10_r, tab20, tab20_r, tab20b, tab20b_r, tab20c, tab20c_r, terrain, terrain_r, viridis, viridis_r, winter, winter_r

RGB对照表:https://www.114la.com/other/rgb.htm

常用的几个:

python matplotlib包图像配色方案分享

示例代码:

cm='Spectral'  #hot bone cool copper gray hsv inferno jet magma pink plasma summer viridis bwr ocean rainbow coolwarm Spectral......................
norm = matplotlib.colors.Normalize(vmin=min, vmax=max) 
map=plt.imshow(plt_arr,interpolation='nearest',cmap=cm,norm=norm, origin='upper') # plt_arr是要显示的数据
mydpi=1000
plt.savefig("filename.png", dpi=mydpi ,bbox_inches='tight', pad_inches=0) # ,bbox_inches='tight' less white area
plt.show()

图像实例:

hsv

python matplotlib包图像配色方案分享

hot

python matplotlib包图像配色方案分享

cool

python matplotlib包图像配色方案分享

rainbow

python matplotlib包图像配色方案分享

gist_earth

python matplotlib包图像配色方案分享

以上这篇python matplotlib包图像配色方案分享就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python提示[Errno 32]Broken pipe导致线程crash错误解决方法
Nov 19 Python
Python Queue模块详解
Nov 30 Python
python随机生成指定长度密码的方法
Apr 04 Python
简单介绍Python中的几种数据类型
Jan 02 Python
python中实现指定时间调用函数示例代码
Sep 08 Python
Python使用正则表达式过滤或替换HTML标签的方法详解
Sep 25 Python
python中break、continue 、exit() 、pass终止循环的区别详解
Jul 08 Python
python能做什么 python的含义
Oct 12 Python
基于python实现语音录入识别代码实例
Jan 17 Python
Jupyter Notebook的连接密码 token查询方式
Apr 21 Python
python利用 keyboard 库记录键盘事件
Oct 16 Python
python实现商品进销存管理系统
May 30 Python
python 使用cx-freeze打包程序的实现
Mar 14 #Python
python matplotlib imshow热图坐标替换/映射实例
Mar 14 #Python
python pyqtgraph 保存图片到本地的实例
Mar 14 #Python
Python 实现将大图切片成小图,将小图组合成大图的例子
Mar 14 #Python
python numpy实现多次循环读取文件 等间隔过滤数据示例
Mar 14 #Python
python matplotlib 绘图 和 dpi对应关系详解
Mar 14 #Python
python 工具 字符串转numpy浮点数组的实现
Mar 14 #Python
You might like
php在线打包程序源码
2008/07/27 PHP
简单的php文件上传(实例)
2013/10/27 PHP
php实现html标签闭合检测与修复方法
2015/07/09 PHP
详解laravel passport OAuth2.0的4种模式
2019/11/04 PHP
jQuery下通过replace字符串替换实现大小图片切换
2012/05/22 Javascript
使用JavaScript和CSS实现文本隔行换色的方法
2015/11/04 Javascript
基于JavaScript实现TAB标签效果
2016/01/12 Javascript
将List对象列表转换成JSON格式的类实现方法
2016/07/04 Javascript
jQuery基于ajax实现页面加载后检查用户登录状态的方法
2017/02/10 Javascript
Bootstrap一款超好用的前端框架
2017/09/25 Javascript
微信小程序实现页面跳转传值的方法
2017/10/12 Javascript
JavaScript之解构赋值的理解
2019/01/30 Javascript
jQuery操作cookie的示例代码
2019/06/05 jQuery
js实现时分秒倒计时
2019/12/03 Javascript
vue实现拖拽效果
2019/12/23 Javascript
JS实现4位随机验证码
2020/10/19 Javascript
深入浅析python中的多进程、多线程、协程
2016/06/22 Python
python executemany的使用及注意事项
2017/03/13 Python
Python3编程实现获取阿里云ECS实例及监控的方法
2017/08/18 Python
Python入门之三角函数atan2()函数详解
2017/11/08 Python
python绘制圆柱体的方法
2018/07/02 Python
示例详解Python3 or Python2 两者之间的差异
2018/08/23 Python
python分割一个文本为多个文本的方法
2019/07/22 Python
python中property和setter装饰器用法
2019/12/19 Python
Python中使用threading.Event协调线程的运行详解
2020/05/02 Python
Python如何定义接口和抽象类
2020/07/28 Python
django前端页面下拉选择框默认值设置方式
2020/08/09 Python
King Apparel官网:英国街头服饰品牌
2019/09/05 全球购物
慰问敬老院活动总结
2014/04/26 职场文书
社区学习党的群众路线教育实践活动心得体会
2014/11/03 职场文书
单位租房协议范本
2014/12/03 职场文书
实名检举信范文
2015/03/02 职场文书
夏洛特的网观后感
2015/06/15 职场文书
婚宴领导致辞
2015/07/28 职场文书
Redis RDB技术底层原理详解
2021/09/04 Redis
vue自定义右键菜单之全局实现
2022/04/09 Vue.js