How to detect and display body temperature using opencv python?

asked 2020-03-26 11:30:52 -0600

lovel gravatar image

Hello everyone, in reference to the corona virus outbreak am looking for a solution to detect and display human body temperature using python opencv

edit retag flag offensive close merge delete

Comments

You need infrared camera

supra56 gravatar imagesupra56 ( 2020-03-26 12:23:03 -0600 )edit

...more precisely a thermal infrared camera. It will give you for each pixel the temperature (in degrees C).

A few tips: try to integrate several frames to get a mean temperature (it can vary slightly because of the air).

To get the temperature, either aim the camera at the front of the people (using a crosshair) -this is a simple solution, or you'll need to use automatic face detection. As the thermal images look different, you might need to train a face recognizer for this type of image.

kbarni gravatar imagekbarni ( 2020-03-26 13:32:04 -0600 )edit