]> Creatis software - creaImageIO.git/blobdiff - bbtk/src/bbcreaImageIOImagesChooserDialogBox.xml
2026 Bug Reading a group of images, Reading a directory with images
[creaImageIO.git] / bbtk / src / bbcreaImageIOImagesChooserDialogBox.xml
index bbc6b957e916724ee4be0d28a3f777011fe99114..5c753905a3a44195ae37c4f18a2fe032d3afcc4e 100644 (file)
@@ -1,3 +1,30 @@
+<!--
+       # ---------------------------------------------------------------------
+       #
+       # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
+       #                        pour la Santé)
+       # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+       # Previous Authors : Laurent Guigues, Jean-Pierre Roux
+       # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+       #
+       #  This software is governed by the CeCILL-B license under French law and 
+       #  abiding by the rules of distribution of free software. You can  use, 
+       #  modify and/ or redistribute the software under the terms of the CeCILL-B 
+       #  license as circulated by CEA, CNRS and INRIA at the following URL 
+       #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
+       #  or in the file LICENSE.txt.
+       #
+       #  As a counterpart to the access to the source code and  rights to copy,
+       #  modify and redistribute granted by the license, users are provided only
+       #  with a limited warranty  and the software's author,  the holder of the
+       #  economic rights,  and the successive licensors  have only  limited
+       #  liability. 
+       #
+       #  The fact that you are presently reading this means that you have had
+       #  knowledge of the CeCILL-B license and that you accept its terms.
+       # ------------------------------------------------------------------------
+-->
+
 <?xml version="1.0" encoding="iso-8859-1"?>
 <!--==========================================================================
    STARTS THE DESCRIPTION OF THE BLACK BOX -->
                          double spac[3];
                          first->GetDimensions(dim);
                          first->GetSpacing(spac);
-                     out->SetSpacing(spac);
+                         if (spac[0]==spac[1])
+                          {
+                               spac[2]=spac[0];  
+                         }
+                         out->SetSpacing(spac);
                          out->SetDimensions(dim[0], dim[1], dlg.getImagesSelected().size() );
                          out->AllocateScalars();
                          out->Update();
                          unsigned long imsize = dim[0] * dim[1];
-                         imsize = imsize * dim[2] ;  // deal with multiframes here
+                         imsize = imsize * dim[2];  // deal with multiframes here
                          // differents formats char , short, etc...
                          // differents components 1..3  ex. jpg ->RGB 3
                          imsize = imsize * first->GetScalarSize() * first->GetNumberOfScalarComponents();
-                         int slice = 0;
-                     std::vector<vtkImageData*>::iterator it;
-                     for (it=dlg.getImagesSelected().begin(); it!=dlg.getImagesSelected().end(); ++it) 
-                         {
-                                 memcpy(out->GetScalarPointer(0,0,slice), (*it)->GetScalarPointer(0,0,0), imsize);
-                                 slice++;
-                         }     
-                         //for (it=dlg.getImagesSelected().begin(); it!=dlg.getImagesSelected().end(); ++it) 
-                         //{
-                                // (*it)->Delete();
-                         //}
-                         bbSetOutputOut(out);
+
+                       int slice,sizeImageVector=dlg.getImagesSelected().size();
+                        for (slice=0 ; slice<sizeImageVector ; slice++)
+                        {
+                               vtkImageData *img = dlg.getImagesSelected()[slice];
+                               memcpy(out->GetScalarPointer(0,0,slice), img->GetScalarPointer(0,0,0), imsize);
+                               //img->Delete();
+                        }      
+
+//EED Notworking the iteration over the pointer vtkImageData
+//                   int slice=0;
+//                   std::vector<vtkImageData*>::iterator it;
+//                   for (it=dlg.getImagesSelected().begin(); it!=dlg.getImagesSelected().end(); ++it) 
+//                       {
+//                               memcpy(out->GetScalarPointer(0,0,slice), (*it)->GetScalarPointer(0,0,0), imsize);
+//                               slice++;
+//                       }     
+//                    //for (it=dlg.getImagesSelected().begin(); it!=dlg.getImagesSelected().end(); ++it) 
+//                     //  {
+//                     //      (*it)->Delete();
+//                     //  }
+
+
+                        bbSetOutputOut(out);
                  }
                } else { 
              bbSetOutputOut( NULL );