Error using im2frame
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ala baccar
le 12 Juil 2022
Réponse apportée : MJFcoNaN
le 13 Juil 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 commentaires
Réponse acceptée
MJFcoNaN
le 13 Juil 2022
Hello,
getframe is the suitable fucntion there:
frame = getframe(gcf);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Convert Image Type dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!