Extracting the text part from imread

Say that I have the following statement:
I = imread('xyz.png');
How can I extract the following part only?
xyz.png
Thanks.

回答 (1 件)

Stephen23
Stephen23 2014 年 12 月 1 日

0 投票

Define the filename as a separate variable, in this case string (char array):
>> Nam = 'xyz.png';
>> Img = imread(Nam);
Nam can then be used to read the file data, and anything else that you wish to do with the string...

カテゴリ

ヘルプ センター および File ExchangeData Type Conversion についてさらに検索

質問済み:

2014 年 12 月 1 日

回答済み:

2014 年 12 月 1 日

Community Treasure Hunt

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

Start Hunting!

Translated by