当前位置:网站首页>The way of deep learning thermodynamic diagram visualization
The way of deep learning thermodynamic diagram visualization
2022-07-28 05:37:00 【A little knowledge, a hundred Xiaosheng】
heatmap: It's the heat map you want to superimpose on the original image
img : It's your original picture
- First of all, will heatmap The maximum value of is reduced to 0-255 Between unit8 type
- And then heatmap Convert to color image
You can use from cv2 The function in
heatmap = cv2.applyColorMap(heatmap,cv2.COLORMAP_JET)
- take heatmap and img weighting
superimposed_img = (heatmap*0.3+img*0.7).astype(np.uint8)
Yes superimposed_img You can visualize
边栏推荐
猜你喜欢

Writing methods of scientific research papers: add analysis and discussion in the method part to explain their contributions and differences

MySQL practice 45 lectures

visio如何精确控制图形的大小和位置及角度

使用navicat或plsql导出csv格式,超过15位数字后面变成000(E+19)的问题

Advanced multi threading: the underlying principle of synchronized, the process of lock optimization and lock upgrade

Edge calculation kubeedge+edgemash

蒸馏模型图

repackag failed: Unable to find main class

Scanf function of input and output function in C language

You must configure either the server or JDBC driver (via the ‘serverTimezone)
随机推荐
openjudge:石头剪刀布
数据库面试
latex使用\hl进行高亮时遇到引用总是报错,显示少了括号或者多了括号
Invalid bound statement (not found): com.exam.mapper.UserMapper.findbyid
多线程进阶:volatile的作用以及实现原理
Fusiongan code learning (I)
GET与POST区别
蒸馏模型图
Oracle用sql查询某张表的字段信息(字段类型、长度等)
pytorch 计算模型的GFlops和total params的方法
框架一步一步方便使用的流程
21 day SQL punch in summary
Openjudge: stone scissors cloth
图像增强——MSRCR
多模块打包:程序包:xxx不存在
图像增强评价指标学习之——结构相似性SSIM
JVM篇 笔记4:内存模型
多线程进阶:锁的策略
Problems encountered when the registry service Eureka switches to nocas
蒙特卡罗方法求解圆周率π并用turtle画点,以及完成进度条问题