How to find the human head from the thermal or gray scale images?

2 次查看(过去 30 天)
Hi...How to find the human head from the below images or gray scale image?
Thank you.

回答(1 个)

Image Analyst
Image Analyst 2016-11-26
It should be hotter and larger than anything else. So simply threshold and call bwareafilt()
binaryImage = thermalImage > someTemperature;
binaryImage = bwareafilt(binaryImage, 1); % Take largest blob only.

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by