]> Creatis software - clitk.git/commitdiff
Prevent to use deprecated function
authorDavid Sarrut <david.sarrut@gmail.com>
Fri, 3 Feb 2012 06:57:12 +0000 (07:57 +0100)
committerDavid Sarrut <david.sarrut@creatis.insa-lyon.fr>
Tue, 4 Jun 2013 08:21:51 +0000 (10:21 +0200)
common/clitkDicomRT_ROI.cxx

index 783b97227921af73bf540c60a6f3e18c0d8c938a..b66135322a39042bfc243dae308e392a8a844b5a 100644 (file)
@@ -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<vtkGDCMPolyDataReader> & reader, i
   
   mName = p->GetStructureSetROIName(roiindex);
   mNumber = p->GetStructureSetROINumber(roiindex);
+
   //mColor = //FIXME !!  
+
   SetDicomUptodateFlag(true);
   // Get the contour
   mMesh =  reader->GetOutput(roiindex);