X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkDicomRT_Contour.h;h=ab6db0d27d37565f99dc4dacb6db80e3b04a9948;hb=706d7e2dc69e12b3823cfae2f3be3f903e4d3c80;hp=91d75d6ffb411be64962f2091527a1e169428372;hpb=91669882f4625b286c9dbaeec147983da01fe286;p=clitk.git diff --git a/common/clitkDicomRT_Contour.h b/common/clitkDicomRT_Contour.h index 91d75d6..ab6db0d 100644 --- a/common/clitkDicomRT_Contour.h +++ b/common/clitkDicomRT_Contour.h @@ -22,7 +22,7 @@ #include "clitkCommon.h" #include -#if GDCM_MAJOR_VERSION == 2 +#if GDCM_MAJOR_VERSION >= 2 #else #include #include @@ -30,6 +30,7 @@ #include #include #include +#include namespace clitk { @@ -43,7 +44,7 @@ public: void Print(std::ostream & os = std::cout) const; -#if GDCM_MAJOR_VERSION == 2 +#if GDCM_MAJOR_VERSION >= 2 bool Read(gdcm::Item * item); void UpdateDicomItem(); #else @@ -54,6 +55,7 @@ public: void SetMesh(vtkPolyData * mesh); vtkPoints * GetPoints() {return mData;} double GetZ() const {return mZ;} + void SetTransformMatrix(vtkMatrix4x4* matrix); protected: @@ -64,11 +66,16 @@ protected: vtkSmartPointer mData; vtkSmartPointer mMesh; vtkSmartPointer mPoints; + vtkSmartPointer mTransformMatrix; bool mMeshIsUpToDate; ///Z location of the contour double mZ; +#if GDCM_MAJOR_VERSION >= 2 gdcm::Item * mItem; +#else + gdcm::SQItem * mItem; +#endif private: DicomRT_Contour();