I want to read image name to be an string

8 views (last 30 days)
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 Comments
Stephen23
Stephen23 on 8 Jan 2020
Edited: Stephen23 on 8 Jan 2020
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 on 8 Jan 2020
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

Sign in to comment.

Accepted Answer

KSSV
KSSV on 8 Jan 2020
imgNames = dir('*.jpg') ;
N = length(imgNames) ;
for i = 1:N
img = imgNames(i).name
end

More Answers (0)

Categories

Find more on Convert Image Type in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!