I want to extract the temperature from the IR image at every pixel
6 ビュー (過去 30 日間)
古いコメントを表示
This the IR image of heated tube. I want to extract the temperature at every pixel in excel sheet
0 件のコメント
回答 (3 件)
Diwakar Diwakar
2023 年 5 月 30 日
Try this code.
% Load the IR image
IR_image = imread('path_to_image.png'); % Replace 'path_to_image.png' with the actual path to your image file
% Define calibration parameters
emissivity = 0.95;
reflected_temp = 20.0;
atmospheric_temp = 25.0;
% Convert the image to temperature
T = (IR_image - reflected_temp) / emissivity + atmospheric_temp;
% Display the temperature image
imshow(T);
colorbar;
title('Temperature Image');
0 件のコメント
Image Analyst
2023 年 5 月 31 日
You need to "undo" the colormap and get back to the original temperature image. See my File Exchange demo:
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!