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.
2 次查看(过去 30 天)
显示 更早的评论
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')
0 个评论
回答(1 个)
Dima Lisin
2015-12-18
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.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!