Save image in specific location (directory)

I am loading a video file, then saving indivdual frames as jpg images.
I ask the user of the script to locate and open the video file:
% Ask user to open video file
[baseFileName, folderName, FilterIndex] = uigetfile('*.*', 'Select Video File');
if ~isequal(baseFileName, 0)
movieFullFileName = fullfile(folderName, baseFileName);
else
return;
end
Once matlab does its thing, I want to be able to write an image to the same directory as the video file came from.
imwrite(frame,"frame.jpg") % + something to write in the proper place
Is this possible?

 採用された回答

Voss
Voss 2024 年 1 月 29 日

0 投票

Specify the full path to write to:
imwrite(frame,fullfile(folderName,"frame.jpg"))
Of couse, if that line is located in a different function than the function that defines folderName (i.e., the function where uigetfile is called), then you'll need to store folderName as an app property (App Designer) or in the handles structure (GUIDE) or otherwise make folderName accessible where you need it.

7 件のコメント

Bill White
Bill White 2024 年 1 月 29 日
編集済み: Bill White 2024 年 1 月 29 日
seems to work a treat - thanks a lot!
As an extention - is it possible to save a matlab figure rather than a single image?
For example, if I have a Figure of subplots of several frames; is it possible to automatically save that Figure (as one would do if they went to Save As from the Figure menu)
regards
Voss
Voss 2024 年 1 月 29 日
You're welcome!
Bill White
Bill White 2024 年 1 月 29 日
sorry to bother you - but I added a caveat about saving an entire Figure (i.e. a subplot with titles etc). Is that possible?
Voss
Voss 2024 年 1 月 29 日
Bill White
Bill White 2024 年 1 月 29 日
thanks again!
Voss
Voss 2024 年 1 月 29 日
You're welcome!
On second thought, exportgraphics might be more like what you're after.
Bill White
Bill White 2024 年 1 月 29 日
thanks!

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeStartup and Shutdown についてさらに検索

製品

リリース

R2020b

質問済み:

2024 年 1 月 29 日

コメント済み:

2024 年 1 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by