필터 지우기
필터 지우기

While running a matlab code for face detection in a video using camshift algorithm, i am getting the error Attempt to execute SCRIPT insertObjectAnnotation as a function. How to remove this error.

조회 수: 2 (최근 30일)
my code is
% Read a video frame and run the detector.
videoFileReader = vision.VideoFileReader('a1.avi');
videoFrame = step(videoFileReader);
faceDetector = vision.CascadeObjectDetector;
bbox = step(faceDetector, videoFrame);
% Draw the returned bounding box around the detected face.
videoOut = insertObjectAnnotation(videoFrame,'rectangle',bbox,'Face');
figure, imshow(videoOut), title('Detected face')

답변 (1개)

Walter Roberson
Walter Roberson 2015년 12월 10일
Either you have a corrupted Computer Vision installation; OR you have messed up your MATLAB path; OR (most likely) you have accidentally created your own insertObjectAnnotation.m file that is interfering with your use of the Computer Vision routine.
Use
which -all insertObjectAnnotation
and see which one is being found. If it is one of yours being found then rename it or delete it.

카테고리

Help CenterFile Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by