未定義功能「insertObjectAnnotation」我嘗試申請進行人臉檢測代碼,並在MATLAB跟蹤可惜這個錯誤提示了錯誤在MATLAB
我使用MATLAB R2012a
這是我試圖
代碼faceDetector = vision.CascadeObjectDetector();
videoFileReader = vision.VideoFileReader('visionface.avi');
videoFrame = step(videoFileReader);
bbox = step(faceDetector, videoFrame);
videoOut = insertObjectAnnotation(videoFrame,'rectangle',bbox,'Face');
,這是錯誤:
Undefined function 'insertObjectAnnotation' for input
arguments of type 'single'.
請幫助。
在命令提示符中輸入'whos videoFrame'並報告「Class」下的內容。 – jerad
我這樣做,它說'類'下的'單'! –
接下來,在命令提示符處嘗試「哪個insertObjectAnnotation」。這檢查函數實際存在於Matlab可以找到它的路徑上。 –