]> Creatis software - creaImageIO.git/commitdiff
2188 creaImageIO Feature New Normal ImagesChooserDialog Box return DICOM tags maps
authorEduardo DAVILA <eduardo.davila@creatis.insa-lyon.fr>
Wed, 11 Dec 2013 07:42:45 +0000 (08:42 +0100)
committerEduardo DAVILA <eduardo.davila@creatis.insa-lyon.fr>
Wed, 11 Dec 2013 07:42:45 +0000 (08:42 +0100)
bbtk/src/bbcreaImageIOGetDicomAttributesFromMaps.cxx [new file with mode: 0644]
bbtk/src/bbcreaImageIOGetDicomAttributesFromMaps.h [new file with mode: 0644]
bbtk/src/bbcreaImageIOImagesChooserDialogBox.xml
src/creaImageIOWxSimpleDlg.cpp
src/creaImageIOWxSimpleDlg.h

diff --git a/bbtk/src/bbcreaImageIOGetDicomAttributesFromMaps.cxx b/bbtk/src/bbcreaImageIOGetDicomAttributesFromMaps.cxx
new file mode 100644 (file)
index 0000000..bd45183
--- /dev/null
@@ -0,0 +1,84 @@
+//===== 
+// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
+//===== 
+#include "bbcreaImageIOGetDicomAttributesFromMaps.h"
+#include "bbcreaImageIOPackage.h"
+namespace bbcreaImageIO
+{
+
+BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaImageIO,GetDicomAttributesFromMaps)
+BBTK_BLACK_BOX_IMPLEMENTATION(GetDicomAttributesFromMaps,bbtk::AtomicBlackBox);
+//===== 
+// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
+//===== 
+void GetDicomAttributesFromMaps::Process()
+{
+
+// THE MAIN PROCESSING METHOD BODY
+//   Here we simply set the input 'In' value to the output 'Out'
+//   And print out the output value
+// INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
+//    void bbSet{Input|Output}NAME(const TYPE&)
+//    const TYPE& bbGet{Input|Output}NAME() const 
+//    Where :
+//    * NAME is the name of the input/output
+//      (the one provided in the attribute 'name' of the tag 'input')
+//    * TYPE is the C++ type of the input/output
+//      (the one provided in the attribute 'type' of the tag 'input')
+
+    std::vector< std::string > lstResult;
+    std::map <std::string,std::string> tmpMap;
+    int i,size=bbGetInputIn().size();
+    std::string strElement;
+
+    for (i=0;i<size;i++)
+    { 
+       tmpMap          = bbGetInputIn()[i];
+        printf("EED GetDicomAttributesFromMaps::Process %d", tmpMap.size() );
+
+       strElement      = tmpMap.find( bbGetInputKeyDicom() )->second;
+       lstResult.push_back( strElement );
+    } // for i
+    bbSetOutputOut( lstResult );
+  
+}
+//===== 
+// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
+//===== 
+void GetDicomAttributesFromMaps::bbUserSetDefaultValues()
+{
+
+//  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
+//    Here we initialize the input 'In' to 0
+//   bbSetInputIn(0);
+  
+}
+//===== 
+// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
+//===== 
+void GetDicomAttributesFromMaps::bbUserInitializeProcessing()
+{
+
+//  THE INITIALIZATION METHOD BODY :
+//    Here does nothing 
+//    but this is where you should allocate the internal/output pointers 
+//    if any 
+
+  
+}
+//===== 
+// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
+//===== 
+void GetDicomAttributesFromMaps::bbUserFinalizeProcessing()
+{
+
+//  THE FINALIZATION METHOD BODY :
+//    Here does nothing 
+//    but this is where you should desallocate the internal/output pointers 
+//    if any
+  
+}
+}
+// EO namespace bbcreaImageIO
+
+
diff --git a/bbtk/src/bbcreaImageIOGetDicomAttributesFromMaps.h b/bbtk/src/bbcreaImageIOGetDicomAttributesFromMaps.h
new file mode 100644 (file)
index 0000000..3b98bfd
--- /dev/null
@@ -0,0 +1,49 @@
+//===== 
+// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
+//===== 
+#ifndef __bbcreaImageIOGetDicomAttributesFromMaps_h_INCLUDED__
+#define __bbcreaImageIOGetDicomAttributesFromMaps_h_INCLUDED__
+#include "bbcreaImageIO_EXPORT.h"
+#include "bbtkAtomicBlackBox.h"
+#include "iostream"
+
+namespace bbcreaImageIO
+{
+
+typedef std::map <std::string, std::string> mapString;
+
+class bbcreaImageIO_EXPORT GetDicomAttributesFromMaps
+ : 
+   public bbtk::AtomicBlackBox
+{
+  BBTK_BLACK_BOX_INTERFACE(GetDicomAttributesFromMaps,bbtk::AtomicBlackBox);
+//===== 
+// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
+//===== 
+  BBTK_DECLARE_INPUT(In,std::vector< mapString > );
+  BBTK_DECLARE_INPUT(KeyDicom, std::string);
+  BBTK_DECLARE_OUTPUT(Out,std::vector <std::string>);
+  BBTK_PROCESS(Process);
+  void Process();
+//===== 
+// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
+//===== 
+};
+
+BBTK_BEGIN_DESCRIBE_BLACK_BOX(GetDicomAttributesFromMaps,bbtk::AtomicBlackBox);
+BBTK_NAME("GetDicomAttributesFromMaps");
+BBTK_AUTHOR("Info-Dev, Eduardo DAVIL");
+BBTK_DESCRIPTION("eduardo.davila[at]creatis.insa-lyon.fr -");
+BBTK_CATEGORY("empty");
+  BBTK_INPUT(GetDicomAttributesFromMaps,In,"Vector of maps with DICOM attributes",std::vector< mapString >,"");
+  BBTK_INPUT(GetDicomAttributesFromMaps,KeyDicom,"Key DICOM",std::string ,"");
+  BBTK_OUTPUT(GetDicomAttributesFromMaps,Out,"Vector of the attribute asked.",std::vector <std::string>,"");
+BBTK_END_DESCRIBE_BLACK_BOX(GetDicomAttributesFromMaps);
+//===== 
+// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
+//===== 
+}
+// EO namespace bbcreaImageIO
+
+#endif // __bbcreaImageIOGetDicomAttributesFromMaps_h_INCLUDED__
+
index e24073865f121bf5539f7d2265f750cf81348c06..454f8836a600ae12e0b2222108740a6759359f84 100644 (file)
@@ -52,7 +52,7 @@
     <PRE>
       typedef std::vector<std::string> VectorStringType;</PRE>
   </typedef>
-  <input name="DicomTags" type="VectorStringType" description="Dicom Tags"/>
+  <input name="DicomTags" type="VectorStringType" description="Dicom Tags (vector of Dicom tags ex: D0028_0030  D0020_0037)"/>
 
   <typedef>
     <PRE>
       typedef std::vector< MapInfoDicom > VectorMapInfoDicom;</PRE>
   </typedef>
 
-  <output name="DicomInfo" type="VectorMapInfoDicom" description="Map of Dicom tags"/>
+  <output name="DicomInfo" type="VectorMapInfoDicom" description="vector of maps of Dicom tags"/>
   
   <!--========================================================================
     PROCESS section -->
 
   <process>
     <PRE>
+     
         creaImageIO::WxSimpleDlg dlg(0,crea::std2wx(bbGetInputTitle()),"localdatabase_Descriptor.dscp","Local Database"); 
+                dlg.SetAttrDicomTags( bbGetInputDicomTags() );
                dlg.ShowModal(); 
                 bbSetOutputDicomInfo( dlg.getDicomInfoImagesSelected() );
                if (dlg.getImagesSelected().size()!=0){ 
index 6a6621eea98acaefeff1f8e0838fa7e37f726ae9..a537b32aed81577d8345f07fd585b668115e1f27 100644 (file)
@@ -146,14 +146,7 @@ namespace creaImageIO
                                dlg.stopReading();
 
                                std::vector<creaImageIO::OutStrGimmick> outStrGimmick;
-                               std::vector<std::string>                attrDicomTags;
-
-                                  attrDicomTags.push_back("D0028_0010");
-                                  attrDicomTags.push_back("D0008_0023");
-                                  attrDicomTags.push_back("D0008_1070");
-                                  attrDicomTags.push_back("D0019_100e");
-
-                               dlg.getSelected(outStrGimmick, attrDicomTags,true,"");
+                               dlg.getSelected(outStrGimmick, m_attrDicomTags,true,"");
 
                        m_results.clear();
                        int size=(int)outStrGimmick.size();
@@ -163,10 +156,6 @@ namespace creaImageIO
                                for (ii=0;ii<size;ii++)
                                {
                                        m_results.push_back(outStrGimmick[ii].img);
-                                       printf("EED WxSimpleDlg::OnReadGimmick D0028_0010 %s\n", outStrGimmick[ii].infos.find("D0028_0010")->second.c_str() );
-                                       printf("EED WxSimpleDlg::OnReadGimmick D0008_0023 %s\n", outStrGimmick[ii].infos.find("D0008_0023")->second.c_str() );
-                                       printf("EED WxSimpleDlg::OnReadGimmick D0008_1070 %s\n", outStrGimmick[ii].infos.find("D0008_1070")->second.c_str() );
-                                       printf("EED WxSimpleDlg::OnReadGimmick D0019_100e %s\n", outStrGimmick[ii].infos.find("D0019_100e")->second.c_str() );
                                        m_resultsDicomAtr.push_back( outStrGimmick[ii].infos );
                                }
 //                     } else {
@@ -200,6 +189,12 @@ namespace creaImageIO
                return m_resultsDicomAtr;
        }
 
+       void WxSimpleDlg::SetAttrDicomTags( std::vector<std::string> attr )
+       {
+               m_attrDicomTags=attr;
+       }
          
+
+
 }
 
index 87412589e3b22225343dc2ae04e11436c652d7e7..5e3f5f00f4220c2000f5e7c6757a74b1df39443d 100644 (file)
@@ -61,6 +61,7 @@ namespace creaImageIO
                   wxString getInfoImage();
 
                   std::vector< std::map<std::string,std::string> >  getDicomInfoImagesSelected();
+                  void SetAttrDicomTags( std::vector<std::string> attr );
 
 
                   void setInfo(bool i_val){bInfo = i_val;}
@@ -82,6 +83,7 @@ namespace creaImageIO
                /// vtkImageData vector
                std::vector<vtkImageData*>                              m_results;
                std::vector< std::map<std::string,std::string> >        m_resultsDicomAtr;
+               std::vector<std::string>                                m_attrDicomTags;    // DXXXX_YYYY DAAAA_BBBB ...
 
                std::vector<creaImageIO::OutStrGimmick> m_resultsInfo;