--- /dev/null
+//=====
+// 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
+
+
--- /dev/null
+//=====
+// 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__
+
<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){
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();
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 {
return m_resultsDicomAtr;
}
+ void WxSimpleDlg::SetAttrDicomTags( std::vector<std::string> attr )
+ {
+ m_attrDicomTags=attr;
+ }
+
+
}
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;}
/// 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;