]> Creatis software - clitk.git/commitdiff
add support for Nifti and Nrrd
authorJoël Schaerer <joel.schaerer@gmail.com>
Mon, 19 Mar 2012 14:59:26 +0000 (15:59 +0100)
committerRomulo Pinho <romulo.pinho@lyon.unicancer.fr>
Mon, 19 Mar 2012 15:13:03 +0000 (16:13 +0100)
Signed-off-by: Romulo Pinho <romulo.pinho@lyon.unicancer.fr>
vv/vvMainWindow.cxx

index 9fdcde45dc23d0aefff2d9b5bdc1dafc330cf884..11629f948db428c02cee78d1e7a41356400b29a2 100644 (file)
@@ -93,7 +93,7 @@
 #define COLUMN_RELOAD_IMAGE 6
 #define COLUMN_IMAGE_NAME 7
 
-#define EXTENSIONS "Images ( *.bmp *.png *.jpeg *.jpg *.tif *.mhd *.mha *.hdr *.vox *.his *.xdr *.SCAN )"
+#define EXTENSIONS "Images ( *.bmp *.png *.jpeg *.jpg *.tif *.mhd *.mha *.hdr *.vox *.his *.xdr *.SCAN *.nii *.nrrd *.nhdr)"
 
 /*Data Tree values
   0,Qt::UserRole full filename
@@ -2257,11 +2257,17 @@ void vvMainWindow::SaveAs()
   } else if (dimension == 3) {
     OutputListeFormat.push_back(".mhd");
     OutputListeFormat.push_back(".mha");
+    OutputListeFormat.push_back(".nii");
+    OutputListeFormat.push_back(".nrrd");
+    OutputListeFormat.push_back(".nhdr");
     OutputListeFormat.push_back(".hdr");
     OutputListeFormat.push_back(".vox");
   } else if (dimension == 4) {
     OutputListeFormat.push_back(".mhd");
     OutputListeFormat.push_back(".mha");
+    OutputListeFormat.push_back(".nii");
+    OutputListeFormat.push_back(".nrrd");
+    OutputListeFormat.push_back(".nhdr");
   }
   QString Extensions = "AllFiles(*.*)";
   for (int i = 0; i < OutputListeFormat.count(); i++) {