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中由于logging模块误用导致的内存泄露
Apr 23 Python
python实现随机漫步算法
Aug 27 Python
用Python编写一个高效的端口扫描器的方法
Dec 20 Python
python 2.7 检测一个网页是否能正常访问的方法
Dec 26 Python
python3+PyQt5 创建多线程网络应用-TCP客户端和TCP服务器实例
Jun 17 Python
python 批量添加的button 使用同一点击事件的方法
Jul 17 Python
python关于矩阵重复赋值覆盖问题的解决方法
Jul 19 Python
python3多线程知识点总结
Sep 26 Python
python实现飞船游戏的纵向移动
Apr 24 Python
python实现感知机模型的示例
Sep 30 Python
python3中布局背景颜色代码分析
Dec 01 Python
python标准库ElementTree处理xml
May 20 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中的strpos使用示例
2014/02/27 PHP
PHP文件缓存内容保存格式实例分析
2014/08/20 PHP
thinkphp区间查询、统计查询与SQL直接查询实例分析
2014/11/24 PHP
使用PHP生成图片的缩略图的方法
2015/08/18 PHP
php查询及多条件查询
2017/02/26 PHP
动态加载script文件的两种方法
2013/08/15 Javascript
jQuery数据缓存用法分析
2015/02/20 Javascript
Bootstrap开发实战之第一次接触Bootstrap
2016/06/02 Javascript
AngularJS在IE下取数据总是缓存问题的解决方法
2016/08/05 Javascript
实现easyui的datagrid导出为excel的示例代码
2016/11/10 Javascript
BootStrap 下拉菜单点击之后不会出现下拉菜单(下拉菜单不弹出)的解决方案
2016/12/14 Javascript
Bootstrap框架安装使用详解
2017/01/21 Javascript
input获取焦点时底部菜单被顶上来问题的解决办法
2017/01/24 Javascript
jQuery插件FusionCharts绘制的2D帕累托图效果示例【附demo源码】
2017/03/28 jQuery
jQuery动态追加页面数据以及事件委托详解
2017/05/06 jQuery
详谈Node.js之操作文件系统
2017/08/29 Javascript
浅谈JavaScript的innerWidth与innerHeight
2017/10/12 Javascript
js 提取某()特殊字符串长度的实例
2017/12/06 Javascript
vue-cli创建的项目,配置多页面的实现方法
2018/03/15 Javascript
JS实现图片上传多次上传同一张不生效的处理方法
2018/08/06 Javascript
[01:04:14]OG vs Winstrike 2018国际邀请赛小组赛BO2 第二场 8.19
2018/08/21 DOTA
[00:57]英雄,你的补给到了!
2020/11/13 DOTA
linux环境下安装pyramid和新建项目的步骤
2013/11/27 Python
python按行读取文件,去掉每行的换行符\n的实例
2018/04/19 Python
pygame实现雷电游戏雏形开发
2018/11/20 Python
如何利用Python开发一个简单的猜数字游戏
2019/09/22 Python
Flask框架搭建虚拟环境的步骤分析
2019/12/21 Python
解决windows上安装tensorflow时报错,“DLL load failed: 找不到指定的模块”的问题
2020/05/20 Python
浅谈基于HTML5的在线视频播放方案
2016/02/18 HTML / CSS
马来西亚时装购物网站:ZALORA马来西亚
2017/03/14 全球购物
工程师自我评价怎么写
2013/09/19 职场文书
创伤外科专业推荐信范文
2013/11/19 职场文书
公务员转正鉴定材料
2014/02/11 职场文书
关于青春的演讲稿500字
2014/08/22 职场文书
趣味运动会广播稿
2014/09/13 职场文书
Windows和Linux上部署Golang并运行程序
2022/04/22 Servers