フィルターのクリア

Question about imaq.videodevice/step

1 回表示 (過去 30 日間)
Akira Chan
Akira Chan 2015 年 8 月 30 日
コメント済み: Akira Chan 2015 年 8 月 31 日
Greetings everyone,
I have a problem, I am trying to run live video for matlab and encountered a problem.
Error using imaq.VideoDevice/step
Too many input arguments; expected
0 (in addition to the object
handle), got 1.
Error in LiveVideoTest (line 135)
step(Video, final);
Whereas, Video is the is the imaq.videodevice and the final is my processed image, which is in black and white. WHy it have this error on getting too much input, I only have my final image keyed in to my step function.
Thank you very much.
Regards, Akira

採用された回答

Walter Roberson
Walter Roberson 2015 年 8 月 30 日
imaq.VideoDevice is video acquisition. It gets data from the device you configured. There is no point passing it an image.
I suspect you wanted to pass your image to a vision.VideoPlayer
  3 件のコメント
Walter Roberson
Walter Roberson 2015 年 8 月 30 日
acquired_image = step(Video);
is enough to fetch a frame and store it in acquired_image. The captured mode would be whatever you configured for the imaq.VideoDevice call. At worst you can im2bw() or rgb2gray() the acquired image to convert it to black and white or to grayscale.
Remember, imaq.VideoDevice is for getting frames. There are other calls for displaying frames.
Akira Chan
Akira Chan 2015 年 8 月 31 日
Dear Mr Walter,
Thank you for your guidance. I can now play live video on my system right now thank you :D
Regards,
Akira

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by