I want to read all these images into my workspace. Path of all the images are in this csv file. i imported it into a table. how to read these images now. please do help.
    4 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Karthik K
 am 12 Jun. 2018
  
    
    
    
    
    Kommentiert: Karthik K
 am 12 Jun. 2018
            
2 Kommentare
  Jan
      
      
 am 12 Jun. 2018
				As soon as you post the existing code, it is a little but easier to post a solution. This will be clearer than "i imported it into a table".
Akzeptierte Antwort
  KSSV
      
      
 am 12 Jun. 2018
        YOu need not to import images into a file.....you could simply do:
images = dir('*.png') ;
N = length(images) ;
for i = 1:N
    thisimage = images(i).name ;
    I = imread(thisimage) ;
    imshow(I) ;
end
If you want to pick it from csv:
[num,txt,raw] = xlsread('FileName.csv') ;
N = size(txt,1) ;
for i = 1:N
    I = imread(txt{i}) ;
  imshow(I) ;
end
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


