MATLAB: How to detect temperature from facial thermal camera

Image Processing Toolboxthermal camera

Hi, I am working on a project with facial thermal camera. I need to detect 5 regions of interest in the face: the left and right supraorbital, the left and right periorbital and the nose. I have to track this 5 regions on interest during video record and then extract temperature from this ROIs. I have no skills in Image processing. Does anyone can help me?
Thanks a lot.

Best Answer

You need to have something that identifies the regions, like a binary image or some coordinates. Then you can just do
meanTemperature = mean(thermalImage(binaryImage));
Attached demo may help.