Finding the average temperature of a thermal image
Mostra commenti meno recenti
I am doing a project where I am analysing a thermal image captured by a thermal sensor and stored as an RBG image.
I was able to convert the RGB image to a thermal image sucessfully.
I want to calculate things like the average temperature, deviation etc of the image, however there are parts of the image that I do not want to be included in that calculation. for example a thermal image was taken of someone's hand but it also captures background temperatures. I have reduced that by cropping the image but there are still some unwanted background colors
How do I remove all the colors outside of the boundary of the hand so that I can accurately find the mean temperature(& other parameters) of the hand
Risposta accettata
Più risposte (1)
Jon
il 16 Mag 2022
If there is a sufficient difference between the background temperature and the hand temperature, then you could just set a threshold on the values to ignore. Something like this, assuming your temperature values are now in an array T
% set all values that are outside of the threshold range to NaN so they can
% be excluded from calculations
Tthresh = 25; % for example exclude anything below 25 deg C
T(T<=Tthresh) = NaN;
% compute mean
Tmean = mean(T,'omitnan'); % set flag so that NaN numbers are not included
If the background color was uniform, hand in front of blue screen or green screen, then you could omit all the values with that color before computing temperatures.
Otherwise you are going to need a more sophisticated cropping alogorithm which finds the edges of the hand in the image
1 Commento
William
il 16 Mag 2022
Categorie
Scopri di più su Display 2-D Images in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
