Error using im2frame
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ala baccar
el 12 de Jul. de 2022
Respondida: MJFcoNaN
el 13 de Jul. de 2022
Can anyone help with this error, i am trying to create a video with thos lines of code :
frame=im2frame(gcf);
writeVideo(writerObj,frame);
But i got the following error
Error using im2frame
Can only make movie frames from image matrices of type double or uint8
Error in skeleton (line 65)
frame=im2frame(gcf);
0 comentarios
Respuesta aceptada
MJFcoNaN
el 13 de Jul. de 2022
Hello,
getframe is the suitable fucntion there:
frame = getframe(gcf);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Convert Image Type en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!