How to know the detected face is of which frame in a matlab code of face detection and how to save first and last frame.
이전 댓글 표시
videoFileReader = vision.VideoFileReader('h1.avi'); videoFrame = step(videoFileReader); figure, imshow(videoFrame) faceDetector = vision.CascadeObjectDetector; bbox = step(faceDetector, videoFrame); videoOut = insertObjectAnnotation(videoFrame,'rectangle',bbox,'Face'); figure, imshow(videoOut), title('Detected face')
답변 (1개)
Dima Lisin
2015년 12월 18일
0 개 추천
Use an if statement to check if bbox is empty. If it is empty, then no face is detected. If not, then a face is detected.
카테고리
도움말 센터 및 File Exchange에서 ROI-Based Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!