필터 지우기
필터 지우기

How to make a video from an uiaxes?

조회 수: 6 (최근 30일)
Viktor Janzen
Viktor Janzen 2019년 10월 29일
답변: Viktor Janzen 2020년 6월 17일
I made a video from an animation with the getframe function. It works well.
But in another case I make my animation in uifigure within uiaxes, which does not support the getframe function.
Any idea, how to realise this?
vid = VideoWriter(Pfadname); %
vid.FrameRate = nBilder / 8;
open(vid);
for k = 1 : nBilder
% Bildelemente un-/sichtbar schalten
set(Aufnahme.Konfig{k}, 'Visible', 'on')
drawnow
% Bildschirm abfotografieren
Foto = getframe(myuiaxes); % DOES NOT WORK WITH UIAXES, ONLY WITH AXES WITHIN FIGURE
writeVideo(vid,Foto); %Hinzufügen dieses Frames zum Video
set(Aufnahme.Konfig{k}, 'Visible','off');
end
close(vid);

채택된 답변

Viktor Janzen
Viktor Janzen 2020년 6월 17일
In Release Documentation of R2020b Prerelease it is written that the getframe function will also work vor Apps build in App Designer. I will hope so.

추가 답변 (0개)

제품


릴리스

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by