From c25433eb0e15bbaacdc9b1a976c8e19e6b155073 Mon Sep 17 00:00:00 2001 From: David Sarrut Date: Fri, 3 Feb 2012 07:57:12 +0100 Subject: [PATCH] Prevent to use deprecated function --- common/clitkDicomRT_ROI.cxx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/common/clitkDicomRT_ROI.cxx b/common/clitkDicomRT_ROI.cxx index 783b972..b661353 100644 --- a/common/clitkDicomRT_ROI.cxx +++ b/common/clitkDicomRT_ROI.cxx @@ -41,6 +41,7 @@ clitk::DicomRT_ROI::DicomRT_ROI() mBackgroundValue = 0; mForegroundValue = 1; SetDicomUptodateFlag(false); + mFilename = ""; } //-------------------------------------------------------------------- @@ -141,6 +142,7 @@ double clitk::DicomRT_ROI::GetForegroundValueLabelImage() const #if GDCM_MAJOR_VERSION == 2 bool clitk::DicomRT_ROI::Read(gdcm::Item * itemInfo, gdcm::Item * itemContour) { + FATAL("Error : compile vv with itk4 + external gdcm"); // Keep dicom item mItemInfo = itemInfo; mItemContour = itemContour; @@ -286,10 +288,11 @@ void clitk::DicomRT_ROI::ComputeMeshFromContour() #if GDCM_MAJOR_VERSION == 2 - //-------------------------------------------------------------------- void clitk::DicomRT_ROI::UpdateDicomItem() { + FATAL("Error : compile vv with itk4 + external gdcm"); + if (GetDicomUptoDateFlag()) return; DD("ROI::UpdateDicomItem"); DD(GetName()); @@ -375,6 +378,7 @@ vvImage * clitk::DicomRT_ROI::GetImage() const //-------------------------------------------------------------------- void clitk::DicomRT_ROI::ComputeContoursFromImage() { + FATAL("ComputeContoursFromImage should not be call. To be replace"); DD("ComputeMeshFromImage"); // Check that an image is loaded @@ -468,7 +472,9 @@ void clitk::DicomRT_ROI::Read(vtkSmartPointer & reader, i mName = p->GetStructureSetROIName(roiindex); mNumber = p->GetStructureSetROINumber(roiindex); + //mColor = //FIXME !! + SetDicomUptodateFlag(true); // Get the contour mMesh = reader->GetOutput(roiindex); -- 2.47.1