Info

此问题已关闭。 请重新打开它进行编辑或回答。

how to fix not enough input arguments?

1 次查看(过去 30 天)
Dimuthu Dissanayake
关闭: 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