フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how to fix not enough input arguments?

1 回表示 (過去 30 日間)
Dimuthu Dissanayake
Dimuthu Dissanayake 2018 年 3 月 20 日
閉鎖済み: Walter Roberson 2018 年 3 月 20 日
I created a faster rcnn called 'detector' and it detect people.I want to give the video feed from webcam and detect people in the video.this is my code.
cam = webcam();
videoFrame = snapshot(cam);
frameSize = size(videoFrame);
videoPlayer = vision.VideoPlayer;
runLoop = true;
frameCount = 0;
while runLoop && frameCount < 400
videoFrame = snapshot(cam);
frameCount = frameCount + 1;
[bbox,scores] = detect(detector,step(videoFrame));
if ~isempty(bbox)
I = insertObjectAnnotation(videoFrame, 'rectangle', bbox, scores);
end
step(videoPlayer,I);
end
clear cam;
release(videoPlayer);
but I came up withis error.
Error using step
Not enough input arguments.
Error in webcamhumandetector (line 16)
[bbox,scores] = detect(detector,step(videoFrame));
please help.

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by