热图
在python中绘制图像和视频热图
图像
视频
安装
pip install heatmappy
要求
matplotlib
电影
麻木
枕头
PySide(可选:比单独的Pillow快约20%)
例子
给定一些点(坐标)和基本图像
from heatmappy import Heatmapper
from PIL import Image
example_points = [( 100 , 20 ), ( 120 , 25 ), ( 200 , 50 ), ( 60 , 300 ), ( 170 , 250 )]
example_img_path = 'cat.jpg'
example_img = Image . open ( example_img_path )
在PIL图像对象上绘制基本的热图
heatmapper = Heatmapper ()
heatmap = hea
2021-11-11 15:36:38
3.49MB
Python
1