X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=segmentation%2FclitkExtractLymphStationsFilter.h;h=d1301579699fcc99f09498018c46033678807554;hb=164e784d773cef093f46b6aed156269fe46bf676;hp=e90abd4045c39fb277f6b4ca33c136469c020f09;hpb=e008d74b0ecdc4ca2eaae8c429901a78f9ef5c31;p=clitk.git diff --git a/segmentation/clitkExtractLymphStationsFilter.h b/segmentation/clitkExtractLymphStationsFilter.h index e90abd4..d130157 100644 --- a/segmentation/clitkExtractLymphStationsFilter.h +++ b/segmentation/clitkExtractLymphStationsFilter.h @@ -19,30 +19,30 @@ #ifndef CLITKEXTRACTLYMPHSTATIONSFILTER_H #define CLITKEXTRACTLYMPHSTATIONSFILTER_H +// clitk #include "clitkFilterBase.h" +#include "clitkFilterWithAnatomicalFeatureDatabaseManagement.h" namespace clitk { //-------------------------------------------------------------------- /* Try to extract the LymphStations part of a thorax CT. - Inputs : - - Patient label image - - Lungs label image - - Bones label image + Need a set of Anatomical Features (AFDB) */ //-------------------------------------------------------------------- template class ITK_EXPORT ExtractLymphStationsFilter: - public clitk::FilterBase, - public itk::ImageToImageFilter + public virtual clitk::FilterBase, + public clitk::FilterWithAnatomicalFeatureDatabaseManagement, + public itk::ImageToImageFilter > { public: /** Standard class typedefs. */ - typedef itk::ImageToImageFilter Superclass; - typedef ExtractLymphStationsFilter Self; + typedef itk::ImageToImageFilter > Superclass; + typedef ExtractLymphStationsFilter Self; typedef itk::SmartPointer Pointer; typedef itk::SmartPointer ConstPointer; @@ -50,8 +50,7 @@ namespace clitk { itkNewMacro(Self); /** Run-time type information (and related methods). */ - itkTypeMacro(ExtractLymphStationsFilter, InPlaceImageFilter); - FILTERBASE_INIT; + itkTypeMacro(ExtractLymphStationsFilter, ImageToImageFilter); /** Some convenient typedefs. */ typedef TImageType ImageType; @@ -61,47 +60,34 @@ namespace clitk { typedef typename ImageType::PixelType ImagePixelType; typedef typename ImageType::SizeType ImageSizeType; typedef typename ImageType::IndexType ImageIndexType; + typedef typename ImageType::PointType ImagePointType; - /** Connect inputs */ - void SetInputMediastinumLabelImage(const TImageType * image, ImagePixelType bg=0); - void SetInputTracheaLabelImage(const TImageType * image, ImagePixelType bg=0); - - /** ImageDimension constants */ - itkStaticConstMacro(ImageDimension, unsigned int, TImageType::ImageDimension); + typedef uchar MaskImagePixelType; + typedef itk::Image MaskImageType; + typedef typename MaskImageType::Pointer MaskImagePointer; + typedef typename MaskImageType::RegionType MaskImageRegionType; + typedef typename MaskImageType::SizeType MaskImageSizeType; + typedef typename MaskImageType::IndexType MaskImageIndexType; + typedef typename MaskImageType::PointType MaskImagePointType; - // Set all options at a time - template - void SetArgsInfo(ArgsInfoType arg); + /** ImageDimension constants */ + itkStaticConstMacro(ImageDimension, unsigned int, ImageType::ImageDimension); + FILTERBASE_INIT; - // Background / Foreground - itkSetMacro(BackgroundValueMediastinum, ImagePixelType); - itkGetConstMacro(BackgroundValueMediastinum, ImagePixelType); - //GGO_DefineOption(MediastinumBG, SetBackgroundValueMediastinum, ImagePixelType); + /** Main options (from ggo) */ + template + void SetArgsInfo(ArgsInfoType & argsinfo); + + itkGetConstMacro(BackgroundValue, MaskImagePixelType); + itkGetConstMacro(ForegroundValue, MaskImagePixelType); + itkSetMacro(BackgroundValue, MaskImagePixelType); + itkSetMacro(ForegroundValue, MaskImagePixelType); - itkSetMacro(BackgroundValueTrachea, ImagePixelType); - itkGetConstMacro(BackgroundValueTrachea, ImagePixelType); - //GGO_DefineOption(TracheaBG, SetBackgroundValueTrachea, ImagePixelType); - - itkGetConstMacro(BackgroundValue, ImagePixelType); - itkGetConstMacro(ForegroundValue, ImagePixelType); - - itkSetMacro(CarenaZPositionInMM, double); - itkGetConstMacro(CarenaZPositionInMM, double); - GGO_DefineOption(carenaZposition, SetCarenaZPositionInMM, double); - - itkSetMacro(MiddleLobeBronchusZPositionInMM, double); - itkGetConstMacro(MiddleLobeBronchusZPositionInMM, double); - GGO_DefineOption(middleLobeBronchusZposition, SetMiddleLobeBronchusZPositionInMM, double); - - itkSetMacro(IntermediateSpacing, double); - itkGetConstMacro(IntermediateSpacing, double); - GGO_DefineOption(spacing, SetIntermediateSpacing, double); - - itkSetMacro(FuzzyThreshold1, double); - itkGetConstMacro(FuzzyThreshold1, double); - GGO_DefineOption(fuzzy1, SetFuzzyThreshold1, double); - - + // Station 7 + itkSetMacro(FuzzyThreshold, double); + itkGetConstMacro(FuzzyThreshold, double); + itkSetMacro(Station7Filename, std::string); + itkGetConstMacro(Station7Filename, std::string); protected: ExtractLymphStationsFilter(); @@ -110,26 +96,35 @@ namespace clitk { virtual void GenerateOutputInformation(); virtual void GenerateInputRequestedRegion(); virtual void GenerateData(); - - itkSetMacro(BackgroundValue, ImagePixelType); - itkSetMacro(ForegroundValue, ImagePixelType); - - ImageConstPointer m_mediastinum; - ImageConstPointer m_trachea; - ImagePointer m_working_image; - ImagePointer m_working_trachea; - ImagePointer m_output; - - ImagePixelType m_BackgroundValueMediastinum; - ImagePixelType m_BackgroundValueTrachea; - ImagePixelType m_BackgroundValue; - ImagePixelType m_ForegroundValue; - - double m_CarenaZPositionInMM; - double m_MiddleLobeBronchusZPositionInMM; - double m_IntermediateSpacing; - double m_FuzzyThreshold1; + ImageConstPointer m_Input; + MaskImagePointer m_Support; + MaskImagePointer m_Working_Support; + MaskImagePointer m_Output; + MaskImagePixelType m_BackgroundValue; + MaskImagePixelType m_ForegroundValue; + + // Common + MaskImagePointer m_Trachea; + + // Station 7 + void ExtractStation_7(); + void ExtractStation_7_SI_Limits(); + void ExtractStation_7_RL_Limits(); + void ExtractStation_7_Posterior_Limits(); + std::string m_Station7Filename; + MaskImagePointer m_working_trachea; + double m_FuzzyThreshold; + MaskImagePointer m_LeftBronchus; + MaskImagePointer m_RightBronchus; + MaskImagePointer m_Station7; + + // Station 4RL + void ExtractStation_4RL(); + void ExtractStation_4RL_SI_Limits(); + void ExtractStation_4RL_LR_Limits(); + MaskImagePointer m_Station4RL; + private: ExtractLymphStationsFilter(const Self&); //purposely not implemented void operator=(const Self&); //purposely not implemented @@ -142,6 +137,8 @@ namespace clitk { #ifndef ITK_MANUAL_INSTANTIATION #include "clitkExtractLymphStationsFilter.txx" +#include "clitkExtractLymphStation_7.txx" +#include "clitkExtractLymphStation_4RL.txx" #endif #endif