当前位置:网站首页>Mlx90640 infrared thermal imager temperature sensor module development notes (6)
Mlx90640 infrared thermal imager temperature sensor module development notes (6)
2022-07-26 14:05:00 【Hebei stable control technology】
MLX90640 Infrared thermal imager temperature sensor module development notes ( 6、 ... and ) Infrared image pseudo color coding

What is infrared imaging pseudo color coding
The ultimate goal of infrared imaging is to use images to show temperature changes , And the outline and shape of objects with different heat can be distinguished by color . that , What color is used to represent what temperature ? Are there any standards and specifications ?
At the beginning, this problem was also bottomless , Because I'm not a professional in infrared imaging , We can only look up information everywhere to understand the relationship between temperature and color , The following conclusions are basically obtained :
(1) There is no absolute correspondence between temperature and color , No one requires that infrared imaging must use any color to represent a certain temperature , This correspondence is completely decided by the designer .
(2) Different application fields and industries have different purposes , Will carry out some temperature and color research , Then a suitable gradient is used to highlight some thermal elements of special concern .
(3) Color coding is mostly gradient . Here are several different color codes
in addition , Others have suggested that “ Conform to human physiology ” Make people look more “ comfortable ” Of HIS colour

The method of changing temperature to color
(1) First, assume the upper and lower limits of the temperature range and convert the actual temperature data into 0~255 Value between
(2) Use the converted value to substitute into the following pseudo color coding calculation function , Generate pseudo color

// Fake color 1
procedure GrayToPseColor(grayValue:Integer; var colorR,colorG,colorB:Ingeger);
Begin
colorR:=Abs(0-grayValue);
colorG:=Abs(127-grayValue);
colorB:=Abs(255-grayValue);
End;

边栏推荐
- JS download files, filesaver.js export txt and Excel files
- MySQL-04 存储引擎和数据类型
- The difference between V-model and.Sync modifier
- With frequent data leakage and deletion events, how should enterprises build a security defense line?
- [oauth2] VII. Wechat oauth2 authorized login
- 什么是Restful风格以及它的四种具体实现形式
- Synchronization mechanism of go (sync.mutex)
- Digital collections accelerate the breaking of the circle and help the industry find new opportunities
- Circular queue (implemented in C language)
- Segmentation fault (core dumped)
猜你喜欢

Plato farm is expected to further expand its ecosystem through elephant swap

在检测分割中一些轻量级网络模型(自己学习的笔记分享)

OA项目之会议排座和送审

Comparison between agile development and Devops
![[NOIP2003 普及组]栈](/img/95/871b1c6f492b467bffd25912304b44.gif)
[NOIP2003 普及组]栈

GDB common commands

LCL three-phase PWM rectifier (inverter)

Canvas upload image Base64 with cropping function jcrop.js

Frisbee, 2022 "black red" top stream
![[GYCTF2020]FlaskApp](/img/ee/dcb42617af4a0e41657f6cf7095feb.png)
[GYCTF2020]FlaskApp
随机推荐
在检测分割中一些轻量级网络模型(自己学习的笔记分享)
Pytoch learning notes (III) use, modification, training (cpu/gpu) and verification of the model
With frequent data leakage and deletion events, how should enterprises build a security defense line?
Understand the meaning of length in MySQL data types
My meeting of OA project
基于用户画像的在线健康社区用户流失预测研究
Integer internal cache
Tianyi cloud web application firewall (edge cloud version) supports the detection and interception of Apache spark shell command injection vulnerabilities
OA项目之会议排座和送审
Native JS get transform value x y z and rotate rotation angle
~6. ccf 2021-09-1 数组推导
Zhou Wei: look for non consensual investment opportunities to accompany the founding team that delays satisfaction
404 pages and routing hooks
Plato Farm有望通过Elephant Swap,进一步向外拓展生态
Comparison between agile development and Devops
融合多自然语言处理任务的中医辅助诊疗方案研究——以糖尿病为例
什么是Restful风格以及它的四种具体实现形式
421. Maximum XOR value of two numbers in the array
图书下载 | 2022年《终身监督学习导论》Meta AI、CMU等学者合著,171页PDF
Sequence traversal of binary tree (implemented in C language)