Is it possible to show movie from raspberrypi webcamera using matlab guide.
3 ビュー (過去 30 日間)
古いコメントを表示
I want to know that Matlab guide (GUI) can show movie from raspberrypi USB webcamera.
I have challenged making program, but it doesn't work correctly.
If you know this solution , please tell me.
2 件のコメント
John D'Errico
2017 年 9 月 24 日
編集済み: John D'Errico
2017 年 9 月 24 日
Of course it is possible, if you know what you are doing. What you did wrong would require us to read your mind. Are you asking us to write detailed code that figures out exactly what you want to do, given a few vague words?
採用された回答
Walter Roberson
2017 年 9 月 27 日
Change
axes(handles.axes1);
hImage1=image(zeros(352,288,3),'Parent',handles.axes1);
preview(img1,hImage1);
to
imshow(img1, 'Parent', handles.axes1)
5 件のコメント
Walter Roberson
2017 年 9 月 30 日
Then you will need to keep looping and grabbing images and displaying them; it appears that preview is not supported for raspberry pi cameras.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で 対話型コントロールとコールバック についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!