mMeshIsUpToDate = false;
mBackgroundValue = 0;
mForegroundValue = 1;
+ SetDicomUptodateFlag(false);
}
//--------------------------------------------------------------------
//--------------------------------------------------------------------
#if GDCM_MAJOR_VERSION == 2
-void clitk::DicomRT_ROI::Read(std::map<int, std::string> & rois, gdcm::Item const & item)
+bool clitk::DicomRT_ROI::Read(gdcm::Item * itemInfo, gdcm::Item * itemContour)
{
- const gdcm::DataSet& nestedds = item.GetNestedDataSet();
-
+ // Keep dicom item
+ mItemInfo = itemInfo;
+ mItemContour = itemContour;
+ // DD(mItemInfo);
+
+ // ROI number [Referenced ROI Number]
+ const gdcm::DataSet & nesteddsInfo = mItemInfo->GetNestedDataSet();
+ gdcm::Attribute<0x3006,0x0022> roinumber;
+ roinumber.SetFromDataSet( nesteddsInfo );
+ int nb1 = roinumber.GetValue();
+
+ // Check this is the same with the other item
+ const gdcm::DataSet & nestedds = mItemContour->GetNestedDataSet();
gdcm::Attribute<0x3006,0x0084> referencedroinumber;
referencedroinumber.SetFromDataSet( nestedds );
- // Change number if needed
+ int nb2 = referencedroinumber.GetValue();
+
+ // Must never be different
+ if (nb1 != nb2) {
+ DD(nb2);
+ DD(nb1);
+ FATAL("nb1 must equal nb2" << std::endl);
+ }
+ mNumber = nb1;
- // TODO
-
- // ROI number [Referenced ROI Number]
- mNumber = referencedroinumber.GetValue();
-
- // Retrieve ROI Name
- mName = rois[mNumber];
+ // Retrieve ROI Name (in the info item)
+ gdcm::Attribute<0x3006,0x26> roiname;
+ roiname.SetFromDataSet( nesteddsInfo );
+ mName = roiname.GetValue();
+ // DD(mName);
// ROI Color [ROI Display Color]
gdcm::Attribute<0x3006,0x002a> color = {};
if( !nestedds.FindDataElement( tcsq ) )
{
std::cerr << "Warning. Could not read contour for structure <" << mName << ">, number" << mNumber << " ? I ignore it" << std::endl;
- return;
+ SetDicomUptodateFlag(true);
+ return false;
}
const gdcm::DataElement& csq = nestedds.GetDataElement( tcsq );
gdcm::SmartPointer<gdcm::SequenceOfItems> sqi2 = csq.GetValueAsSQ();
mListOfContours.push_back(c);
}
}
+ SetDicomUptodateFlag(true);
+ return true;
}
#else
void clitk::DicomRT_ROI::Read(std::map<int, std::string> & rois, gdcm::SQItem * item)
{
-
- // Change number if needed
-
- // TODO
-
// ROI number [Referenced ROI Number]
mNumber = atoi(item->GetEntryValue(0x3006,0x0084).c_str());
else {
std::cerr << "Warning. Could not read contour for structure <" << mName << ">, number" << mNumber << " ? I ignore it" << std::endl;
}
+ SetDicomUptodateFlag(true);
}
#endif
//--------------------------------------------------------------------
}
return mMesh;
}
+//--------------------------------------------------------------------
+
+
//--------------------------------------------------------------------
clitk::DicomRT_Contour * clitk::DicomRT_ROI::GetContour(int n)
{
return mListOfContours[n];
}
+//--------------------------------------------------------------------
+
//--------------------------------------------------------------------
void clitk::DicomRT_ROI::ComputeMesh()
//--------------------------------------------------------------------
+#if GDCM_MAJOR_VERSION == 2
+
+//--------------------------------------------------------------------
+void clitk::DicomRT_ROI::UpdateDicomItem()
+{
+ if (GetDicomUptoDateFlag()) return;
+ DD("ROI::UpdateDicomItem");
+ DD(GetName());
+
+ // From now, only some item can be modified
+
+ // Set ROI Name 0x3006,0x26>
+ gdcm::Attribute<0x3006,0x26> roiname;
+ roiname.SetValue(GetName());
+ gdcm::DataElement de = roiname.GetAsDataElement();
+ gdcm::DataSet & ds = mItemInfo->GetNestedDataSet();
+ ds.Replace(de);
+
+ // Update contours
+ for(uint i=0; i<mListOfContours.size(); i++) {
+ DD(i);
+ DicomRT_Contour::Pointer roi = mListOfContours[i];
+ roi->UpdateDicomItem(mItemContour);
+ }
+}
+//--------------------------------------------------------------------
+#endif
+
//--------------------------------------------------------------------
void clitk::DicomRT_ROI::SetFromBinaryImage(vvImage * image, int n,
std::string name,
itkNewMacro(Self);
void Print(std::ostream & os = std::cout) const;
-#if GDCM_MAJOR_VERSION == 2
- void Read(std::map<int, std::string> & rois, gdcm::Item const & item);
-#else
- void Read(std::map<int, std::string> & rois, gdcm::SQItem * item);
-#endif
void SetFromBinaryImage(vvImage * image, int n,
std::string name,
std::vector<double> color,
void SetImage(vvImage * im);
DicomRT_Contour* GetContour(int n);
- // double GetContourSpacing() const {return mZDelta;}
+ // Compute a vtk mesh from the dicom contours
+ void ComputeMesh();
+ // Indicate if the mesh is uptodate according to the dicom
+ void SetDicomUptodateFlag(bool b) { m_DicomUptodateFlag = b; }
+ bool GetDicomUptoDateFlag() const { return m_DicomUptodateFlag; }
+ void SetName(std::string n) { mName = n; }
+
+ // Read from DICOM RT STRUCT
+#if GDCM_MAJOR_VERSION == 2
+ bool Read(gdcm::Item * itemInfo, gdcm::Item * itemContour);
+ void UpdateDicomItem();
+#else
+ void Read(std::map<int, std::string> & rois, gdcm::SQItem * item);
+#endif
+
protected:
- void ComputeMesh();
std::string mName;
std::string mFilename;
int mNumber;
vvImage::Pointer mImage;
double mBackgroundValue;
double mForegroundValue;
- ///Spacing between two contours
- // double mZDelta;
+ bool m_DicomUptodateFlag;
+
+#if GDCM_MAJOR_VERSION == 2
+ gdcm::Item * mItemInfo;
+ gdcm::Item * mItemContour;
+#endif
private:
DicomRT_ROI();