I want to read image name to be an string

10 ビュー (過去 30 日間)
Supwolf
Supwolf 2020 年 1 月 8 日
コメント済み: Supwolf 2020 年 2 月 4 日
I = imread ("28-30-50-30.jpg");
after I ran this function I will get the image in variable "I",
but I want to read name of this picture ("28-30-50-30.jpg") in string to do the next step in strsprit().
How can I do it??
  4 件のコメント
Stephen23
Stephen23 2020 年 1 月 8 日
編集済み: Stephen23 2020 年 1 月 8 日
As you already noted in your question, I is an image. It is a numeric array. It is not a string, nor a character array, and it cannot be applied to functions that require strings or character arrays.
It is not clear what you expect to achieve.
Supwolf
Supwolf 2020 年 1 月 8 日
I want a code to run like this
-first get an image
-next read the name of the image
-then get the name of image
-and sprit them in each alphabet

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

採用された回答

KSSV
KSSV 2020 年 1 月 8 日
imgNames = dir('*.jpg') ;
N = length(imgNames) ;
for i = 1:N
img = imgNames(i).name
end
  1 件のコメント
Supwolf
Supwolf 2020 年 2 月 4 日
It's work
thx :))

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by