MATLAB figure windows are disabled using PCT
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I'm using figures creating videos in order to document my processing.
The code runs fine without Parallel Computing Toolbox (PCT).
However, in order to speed up I like to process multiple videos in parallel.
The one and the same code throws the following error using PCT:
MATLAB figure windows are disabled. GETFRAME can not capture any part of a figure's frame, menus, or toolbars unless figure windows are displayed.
Yes, PCT workers process everything in background without visualizing it. Anyway I like to have multiple videos generated in parallel.
The code uses the VideoWriter and getFrame to collect the video.
vidWriter = VideoWriter(['Video' num2str(a(1)) '.avi']);
:
fig = figure;
:
writeVideo(vidWriter, getframe(fig))
How to enable figures even they are called by a PCT worker in background?
Thanks!
0 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur Animation dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!