X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkImage2DicomRTStructFilter.h;h=9455eabb8ba3a65fb74c1879ac6679c34bf371b0;hb=c99295881254fc9245d4ee2a4cf940cf87ca2d7f;hp=b6a74b2fe7829ff7fb59b7cce19b0c343f0427a1;hpb=4eb6f95e59a7602564b15f9d0715650dc91442a2;p=clitk.git diff --git a/common/clitkImage2DicomRTStructFilter.h b/common/clitkImage2DicomRTStructFilter.h index b6a74b2..9455eab 100644 --- a/common/clitkImage2DicomRTStructFilter.h +++ b/common/clitkImage2DicomRTStructFilter.h @@ -2,7 +2,7 @@ Program: vv http://www.creatis.insa-lyon.fr/rio/vv Main authors : XX XX XX - Authors belongs to: + Authors belongs to: - University of LYON http://www.universite-lyon.fr/ - Léon Bérard cancer center http://www.centreleonberard.fr - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr @@ -31,7 +31,7 @@ namespace clitk { //-------------------------------------------------------------------- template class Image2DicomRTStructFilter: public clitk::FilterBase { - + public: Image2DicomRTStructFilter(); ~Image2DicomRTStructFilter(); @@ -41,17 +41,24 @@ namespace clitk { typedef typename clitk::DicomRT_StructureSet::Pointer DicomRTStructPointer; // Set inputs - itkSetMacro(InputFilenames, std::vector ); + virtual void SetInputFilenames (const std::vector _arg) + { + if ( this->m_InputFilenames != _arg ) + { + this->m_InputFilenames = _arg; + this->Modified(); + } + } itkSetMacro(StructureSetFilename, std::string); itkSetMacro(DicomFolder, std::string); itkSetMacro(OutputFilename, std::string); void SetROIType(std::string type); itkSetMacro(ThresholdValue, PixelType); itkSetMacro(SkipInitialStructuresFlag, bool); - + // Run filter - void Update(); - + void Update(); + protected: std::string m_StructureSetFilename; std::string m_DicomFolder;