X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkDicomRT_Contour.h;h=91d75d6ffb411be64962f2091527a1e169428372;hb=922f0049feb4213c981f12c6bbdd517dd71e468d;hp=85ebe49b83d56d8034414e9e4c0131f77e1cbc47;hpb=7fb3f08a03ea03edb40f5e73d59381c5a92935fb;p=clitk.git diff --git a/common/clitkDicomRT_Contour.h b/common/clitkDicomRT_Contour.h index 85ebe49..91d75d6 100644 --- a/common/clitkDicomRT_Contour.h +++ b/common/clitkDicomRT_Contour.h @@ -4,7 +4,7 @@ Authors belongs to: - University of LYON http://www.universite-lyon.fr/ - - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - Léon Bérard cancer center http://www.centreleonberard.fr - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr This software is distributed WITHOUT ANY WARRANTY; without even @@ -21,35 +21,60 @@ #define CLITKDICOMRT_CONTOUR_H #include "clitkCommon.h" -#include "clitkDicomRT_Contour.h" +#include +#if GDCM_MAJOR_VERSION == 2 +#else #include #include +#endif #include #include +#include namespace clitk { - //-------------------------------------------------------------------- - class DicomRT_Contour { - - public: - DicomRT_Contour(); - ~DicomRT_Contour(); - - void Print(std::ostream & os = std::cout) const; - bool Read(gdcm::SQItem * item); - vtkPolyData * GetMesh(); - - protected: - void ComputeMesh(); - unsigned int mNbOfPoints; - std::string mType; - vtkPoints * mData; - vtkPolyData * mMesh; - bool mMeshIsUpToDate; - - }; - //-------------------------------------------------------------------- +//-------------------------------------------------------------------- +class DicomRT_Contour : public itk::LightObject{ + +public: + typedef DicomRT_Contour Self; + typedef itk::SmartPointer Pointer; + itkNewMacro(Self); + + void Print(std::ostream & os = std::cout) const; + +#if GDCM_MAJOR_VERSION == 2 + bool Read(gdcm::Item * item); + void UpdateDicomItem(); +#else + bool Read(gdcm::SQItem * item); +#endif + + vtkPolyData * GetMesh(); + void SetMesh(vtkPolyData * mesh); + vtkPoints * GetPoints() {return mData;} + double GetZ() const {return mZ;} + + +protected: + void ComputeMeshFromDataPoints(); + void ComputeDataPointsFromMesh(); + unsigned int mNbOfPoints; + std::string mType; + vtkSmartPointer mData; + vtkSmartPointer mMesh; + vtkSmartPointer mPoints; + bool mMeshIsUpToDate; + ///Z location of the contour + double mZ; + + gdcm::Item * mItem; + +private: + DicomRT_Contour(); + ~DicomRT_Contour(); +}; +//--------------------------------------------------------------------