Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 .

share|improve this question
1  
Enter whos videoFrame into the command prompt and report what it says under "Class". – jerad Dec 13 '12 at 20:17
i do it and it says 'single' under "Class" ! – M.A.Salam Dec 13 '12 at 22:37
1  
Next, try which insertObjectAnnotation at 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
Dear Salam, did you get a solution for the problem. I am having same problem. please help. – MMH Mar 19 at 2:38

2 Answers

The problem is that videoFrame is of type single which isn't a valid input type. Most matlab functions expect their inputs to be of type double. Try casting videoFrame to a double:

ideoOut = insertObjectAnnotation( double(videoFrame), 'rectangle', bbox, 'Face');
share|improve this answer
HI Slayton, I am having the same problem. When I use double(videoFrame) it give error- Undefined function 'insertObjectAnnotation' for input arguments of type 'double'. can you please help – MMH Mar 19 at 2:33
@MMH, ask a new question – slayton Mar 19 at 20:10
here is a new question stackoverflow.com/questions/15540160/… – MMH Mar 21 at 5:27

insertObjectAnnotation is working for windows environtment under the Computer Vision System Toolbox. It doesn't work in ubuntu.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.