]> Creatis software - creaImageIO.git/blobdiff - src/creaImageIOGimmickView.h
new Output format and structure for Gimmick. Based on creaImageIO Output document...
[creaImageIO.git] / src / creaImageIOGimmickView.h
index beb7bf25f16717e6b423efd773acc4016eebef12..7a0e839340e3a9c0a5b97b30b5e1604982aa9214 100644 (file)
 
 namespace creaImageIO
 {
+
+       typedef struct 
+       { 
+               vtkImageData *img;
+               std::map<std::string, std::string> infos;
+       }OutStrGimmick;
+
+
        /**
        * \ingroup View
        */
@@ -95,8 +103,8 @@ namespace creaImageIO
          { GimmickError("INTERNAL ERROR : EditFields not implemented"); }
       
          /// Anonymize or de-anonymize data
-         void Anonymize(std::vector<std::string> i_filenames, int type);
-         
+         virtual void Anonymize(std::vector<std::string> i_filenames, int type)
+         { GimmickError("INTERNAL ERROR : Anonymize not implemented"); }
 
          /// Display all Dicom Tags
          virtual void DumpTags(const std::string filename)
@@ -175,9 +183,29 @@ namespace creaImageIO
 
        void modifyValidationSignal(bool ivalid);
 
+       
+       void readImages(std::vector<OutStrGimmick>& o_output, std::vector<std::string> im,
+                        OutputAttr i_attr, int i_dim, double i_zspc);
+                       bool isSingle(const std::string i_file);
     private:
 
-       double OrderTheFileNameVector(std::vector<std::string> &im);
+
+       typedef void (*readXD)(std::vector<OutStrGimmick>&,  std::vector<std::string>, OutputAttr, double);
+
+       void getAttributes(const std::string i_file, std::map<std::string, std::string> &o_infos, OutputAttr i_attr);
+
+       virtual void readImages2(std::vector<OutStrGimmick>& o_output, std::vector<std::string> im,
+                        OutputAttr i_attr, double i_zspc);
+
+       virtual void readImages3(std::vector<OutStrGimmick>& o_output, std::vector<std::string> im,
+                        OutputAttr i_attr, double i_zspc);
+
+       virtual void readImages4(std::vector<OutStrGimmick>& o_output, std::vector<std::string> im,
+                        OutputAttr i_attr);
+
+       virtual void readImages1(std::vector<OutStrGimmick>& o_output, std::vector<std::string> im,
+                        OutputAttr i_attr);
+
 
       /// Controller which manages the interaction with the model
       boost::shared_ptr< Gimmick> mGimmick;