For loop for many images
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    reyadh Albarakat
 il 6 Apr 2017
  
    
    
    
    
    Commentato: Walter Roberson
      
      
 il 7 Apr 2017
            Hi All,
I have thousands of images each image has size (228*196), Each 7 images have same date. I need your help to create a code to do calculation which is (7th image - 2nd image)/(7th image + 2nd image).. I want to do that for each date.
Thank you
Reyadh
Risposta accettata
  Walter Roberson
      
      
 il 7 Apr 2017
        dinfo = dir('*_b02_clip.tif_mosaico_ream.tif');
nfile = length(dinfo);
filenames = {dinfo.name};
for K = 1 : nfile
  b2_file = filenames{K};
  b7_file = b2_file; b7_file(end-27) = '7';
  b2_data = double( imread(b2_file) );
  b7_data = double( imread(b7_file) );
  result = (b7_data - b2_data) ./ (b7_data + b2_data);
  %now what?
end
6 Commenti
  Walter Roberson
      
      
 il 7 Apr 2017
				It already loops over all dates, provided that the band 2 files all end in b02_clip.tif_mosaico_ream.tif
If not then you could perhaps use
dinfo = dir('*_b02_*.tif');
If the b02 part is not consistent then you need to be clearer as to how you can recognize the band number.
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Read, Write, and Modify Image in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


