How can I detect temperature from facial thermal camera

4 views (last 30 days)
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.

Accepted Answer

Image Analyst
Image Analyst on 9 Jul 2014
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.
  8 Comments
Mélodie
Mélodie on 9 Jul 2014
Okay thank you so much for your answers, it helps me a lot.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!