How can I make a file be automatically closed after ending a running matlab script...

8 ビュー (過去 30 日間)
Hello,
I've been working on a script that uses the VideoWriter class in order to write each frame generated to an avi file. Currently, I have to use control + C to end the script. This means that the file is not properly closed after the script ends, so if I open it in a video player I get an error due to the lock on the file. I have to manually execute a close statement on the file each time in matlab, which is tedious.
I've looked into the following possibilities:
*I tried using CloseRequestFcn to make the script end when the X button is clicked in the topright of the window. I can close the file here. Unfortunately, however, there does not appear to be a command that ends a script. "quit" exits matlab altogether, which forces me to restart matlab and wait for the IDE to reload.
*As best as I can tell keyboard handling is done with call back functions. I'm not really sure how you can tell the main script to end its loop from a callback function.
Thanks in advance.

採用された回答

Walter Roberson
Walter Roberson 2013 年 6 月 27 日
Have your loop check a flag to see if it should exit. Have one of the callbacks set the flag.
while true
drawnow();
should_exit = get(handles.SOMEHANDLE, 'value');
if should_exit; break; end
.......
end
  1 件のコメント
Chris
Chris 2013 年 6 月 27 日
Sorry, not sure if I should have posted my question here...It showed up as another answer below.

サインインしてコメントする。

その他の回答 (2 件)

Chris
Chris 2013 年 6 月 27 日
Is get with a handle a way of passing variables across scripts/functions/files? I know how to do this kind of thing in C++/Java but am not as well versed with Matlab.
  2 件のコメント
Walter Roberson
Walter Roberson 2013 年 6 月 27 日
get() of the Value property of a uicontrol object retrieves the current state of the control, such as which item number is selected in a menu, or whether a button is current pressed in or not.
Whether this is "passing variables" around depends on how you think about graphic objects, as to whether the drawn graphic is the "real" object whose state is to be fetched "live", or if the storage variables associated with the graphic object are the "real" object. If the storage is the "real" object, then Yes, get() with a handle is a way of passing variables across scripts, but if the graphic is the "real" object, then No, what is being passed around is locator information rather than a variable.
Chris
Chris 2013 年 6 月 28 日
So in order to use the code above, you would essentially associate variables with a UI object and then use get to get them?
If I'm just rendering to a window with plot and don't have any actual UI controls, would I need to do anything special to use this?

サインインしてコメントする。


Tom
Tom 2013 年 6 月 28 日
What conditions do want to satisfy to make it close? Or rather, what is preventing you from using close(vidObj) ?

カテゴリ

Help Center および File ExchangeGraphics Object Identification についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by