i try to apply code for face detection and tracking in matlab but unfortunately this error prompted up
i use matlab R2012a
this is the code i tried
faceDetector = vision.CascadeObjectDetector();
videoFileReader = vision.VideoFileReader('visionface.avi');
videoFrame = step(videoFileReader);
bbox = step(faceDetector, videoFrame);
videoOut = insertObjectAnnotation(videoFrame,'rectangle',bbox,'Face');
and this is the error :
Undefined function 'insertObjectAnnotation' for input
arguments of type 'single'.
please help .
whos videoFrameinto the command prompt and report what it says under "Class". – jerad Dec 13 '12 at 20:17which insertObjectAnnotationat the command prompt. This checks that the function actually exists on a path where Matlab can find it. – Colin T Bowers Dec 13 '12 at 23:38