필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
vps
vps 2016년 11월 26일
답변: Image Analyst 2016년 11월 26일
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