python 画图配色
时间: 2023-10-17 21:25:45 浏览: 142
在Python中,可以使用Haishoku库来获取图像的主色调和主要配色方案。首先,需要导入Haishoku库并加载图像:from haishoku.haishoku import Haishoku image = 'test.jpg' haishoku = Haishoku.loadHaishoku(image)
然后可以打印出主色调:print(haishoku.dominant) 这将输出图像的主要颜色。
如果需要获取配色方案,可以使用以下代码:color = haishoku.palette import pprint pprint.pprint(color) 这将打印出图像的配色方案。
另外,Haishoku库还提供了预览图像配色方案的功能:Haishoku.showPalette(image)
总结起来,使用Haishoku库可以方便地获取图像的主色调和配色方案,从而实现Python画图的配色。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [python通过图像配色画图](https://blog.csdn.net/weixin_45835837/article/details/126492593)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [python 画图时各种颜色代码](https://blog.csdn.net/weixin_41504611/article/details/130391144)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文