Is it possible to show movie from raspberrypi webcamera using matlab guide.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
PROJECT SR
el 24 de Sept. de 2017
Comentada: PROJECT SR
el 1 de Oct. de 2017
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 comentarios
John D'Errico
el 24 de Sept. de 2017
Editada: John D'Errico
el 24 de Sept. de 2017
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?
Respuesta aceptada
Walter Roberson
el 27 de Sept. de 2017
Change
axes(handles.axes1);
hImage1=image(zeros(352,288,3),'Parent',handles.axes1);
preview(img1,hImage1);
to
imshow(img1, 'Parent', handles.axes1)
5 comentarios
Walter Roberson
el 30 de Sept. de 2017
Then you will need to keep looping and grabbing images and displaying them; it appears that preview is not supported for raspberry pi cameras.
Más respuestas (1)
Niraj Gadakari
el 27 de Sept. de 2017
1 comentario
PROJECT SR
el 27 de Sept. de 2017
Editada: Walter Roberson
el 27 de Sept. de 2017
Ver también
Categorías
Más información sobre GUIDE アプリの移行 en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!