1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
3 Main authors : XX XX XX
6 - University of LYON http://www.universite-lyon.fr/
7 - Léon Bérard cancer center http://www.centreleonberard.fr
8 - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the copyright notices for more information.
14 It is distributed under dual licence
15 - BSD http://www.opensource.org/licenses/bsd-license.php
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
18 =========================================================================*/
20 #include "clitkDicomRT_ROI.h"
21 #include <vtkSmartPointer.h>
22 #include <vtkAppendPolyData.h>
23 #include <vtkImageClip.h>
24 #include <vtkMarchingSquares.h>
25 #include <vtkPolyDataWriter.h>
26 #include <vtkVersion.h>
28 #if GDCM_MAJOR_VERSION == 2
29 #include "gdcmAttribute.h"
33 //--------------------------------------------------------------------
34 clitk::DicomRT_ROI::DicomRT_ROI()
40 mColor[0] = mColor[1] = mColor[2] = 0;
41 mMeshIsUpToDate = false;
44 SetDicomUptodateFlag(false);
47 //--------------------------------------------------------------------
50 //--------------------------------------------------------------------
51 clitk::DicomRT_ROI::~DicomRT_ROI()
54 //--------------------------------------------------------------------
57 //--------------------------------------------------------------------
58 void clitk::DicomRT_ROI::SetDisplayColor(double r, double v, double b)
65 //--------------------------------------------------------------------
68 //--------------------------------------------------------------------
69 int clitk::DicomRT_ROI::GetROINumber() const
73 //--------------------------------------------------------------------
76 //--------------------------------------------------------------------
77 void clitk::DicomRT_ROI::SetROINumber(int number)
81 //--------------------------------------------------------------------
84 //--------------------------------------------------------------------
85 const std::string & clitk::DicomRT_ROI::GetName() const
89 //--------------------------------------------------------------------
92 //--------------------------------------------------------------------
93 const std::string & clitk::DicomRT_ROI::GetFilename() const
97 //--------------------------------------------------------------------
100 //--------------------------------------------------------------------
101 const std::vector<double> & clitk::DicomRT_ROI::GetDisplayColor() const
105 //--------------------------------------------------------------------
108 //--------------------------------------------------------------------
109 void clitk::DicomRT_ROI::Print(std::ostream & os) const
111 os << "ROI " << mNumber << "\t" << mName
112 << "\t(" << mColor[0] << " " << mColor[1] << " " << mColor[2] << ")"
113 << "\t Contours = " << mListOfContours.size() << std::endl;
115 //--------------------------------------------------------------------
118 //--------------------------------------------------------------------
119 void clitk::DicomRT_ROI::SetBackgroundValueLabelImage(double bg)
121 mBackgroundValue = bg;
123 //--------------------------------------------------------------------
126 //--------------------------------------------------------------------
127 double clitk::DicomRT_ROI::GetBackgroundValueLabelImage() const
129 return mBackgroundValue;
131 //--------------------------------------------------------------------
134 //--------------------------------------------------------------------
135 void clitk::DicomRT_ROI::SetForegroundValueLabelImage(double bg)
137 mForegroundValue = bg;
139 //--------------------------------------------------------------------
142 //--------------------------------------------------------------------
143 double clitk::DicomRT_ROI::GetForegroundValueLabelImage() const
145 return mForegroundValue;
147 //--------------------------------------------------------------------
150 //--------------------------------------------------------------------
151 #if GDCM_MAJOR_VERSION == 2
152 bool clitk::DicomRT_ROI::Read(gdcm::Item * itemInfo, gdcm::Item * itemContour)
154 //FATAL("Error : compile vv with itk4 + external gdcm");
156 mItemInfo = itemInfo;
157 mItemContour = itemContour;
160 // ROI number [Referenced ROI Number]
161 const gdcm::DataSet & nesteddsInfo = mItemInfo->GetNestedDataSet();
162 gdcm::Attribute<0x3006,0x0022> roinumber;
163 roinumber.SetFromDataSet( nesteddsInfo );
164 int nb1 = roinumber.GetValue();
166 // Check this is the same with the other item
167 const gdcm::DataSet & nestedds = mItemContour->GetNestedDataSet();
168 gdcm::Attribute<0x3006,0x0084> referencedroinumber;
169 referencedroinumber.SetFromDataSet( nestedds );
170 int nb2 = referencedroinumber.GetValue();
172 // Must never be different
176 FATAL("nb1 must equal nb2" << std::endl);
180 // Retrieve ROI Name (in the info item)
181 gdcm::Attribute<0x3006,0x26> roiname;
182 roiname.SetFromDataSet( nesteddsInfo );
183 mName = roiname.GetValue();
186 // ROI Color [ROI Display Color]
187 gdcm::Attribute<0x3006,0x002a> color = {};
188 color.SetFromDataSet( nestedds );
189 assert( color.GetNumberOfValues() == 3 );
190 mColor[0] = color.GetValue(0);
191 mColor[1] = color.GetValue(1);
192 mColor[2] = color.GetValue(2);
194 // Read contours [Contour Sequence]
195 gdcm::Tag tcsq(0x3006,0x0040);
196 if( !nestedds.FindDataElement( tcsq ) )
198 std::cerr << "Warning. Could not read contour for structure <" << mName << ">, number" << mNumber << " ? I ignore it" << std::endl;
199 SetDicomUptodateFlag(true);
202 const gdcm::DataElement& csq = nestedds.GetDataElement( tcsq );
203 mContoursSequenceOfItems = csq.GetValueAsSQ();
204 gdcm::SmartPointer<gdcm::SequenceOfItems> & sqi2 = mContoursSequenceOfItems;
205 if( !sqi2 || !sqi2->GetNumberOfItems() )
208 unsigned int nitems = sqi2->GetNumberOfItems();
210 for(unsigned int i = 0; i < nitems; ++i)
212 gdcm::Item & j = sqi2->GetItem(i+1); // Item start at #1
213 DicomRT_Contour::Pointer c = DicomRT_Contour::New();
214 bool b = c->Read(&j);
216 mListOfContours.push_back(c);
219 SetDicomUptodateFlag(true);
223 void clitk::DicomRT_ROI::Read(std::map<int, std::string> & rois, gdcm::SQItem * item)
225 // ROI number [Referenced ROI Number]
226 mNumber = atoi(item->GetEntryValue(0x3006,0x0084).c_str());
229 mName = rois[mNumber];
231 // ROI Color [ROI Display Color]
232 mColor = clitk::parse_string<double>(item->GetEntryValue(0x3006,0x002a),'\\');
234 // Read contours [Contour Sequence]
235 gdcm::SeqEntry * contours=item->GetSeqEntry(0x3006,0x0040);
238 for(gdcm::SQItem* j=contours->GetFirstSQItem(); j!=0; j=contours->GetNextSQItem()) {
239 DicomRT_Contour::Pointer c = DicomRT_Contour::New();
242 mListOfContours.push_back(c);
248 std::cerr << "Warning. Could not read contour for structure <" << mName << ">, number" << mNumber << " ? I ignore it" << std::endl;
250 SetDicomUptodateFlag(true);
253 //--------------------------------------------------------------------
256 //--------------------------------------------------------------------
257 void clitk::DicomRT_ROI::SetImage(vvImage::Pointer image)
261 //--------------------------------------------------------------------
264 //--------------------------------------------------------------------
265 vtkPolyData * clitk::DicomRT_ROI::GetMesh()
267 if (!mMeshIsUpToDate) {
268 ComputeMeshFromContour();
272 //--------------------------------------------------------------------
275 //--------------------------------------------------------------------
276 clitk::DicomRT_Contour * clitk::DicomRT_ROI::GetContour(int n)
278 return mListOfContours[n];
280 //--------------------------------------------------------------------
283 //--------------------------------------------------------------------
284 void clitk::DicomRT_ROI::ComputeMeshFromContour()
286 vtkSmartPointer<vtkAppendPolyData> append = vtkSmartPointer<vtkAppendPolyData>::New();
287 for(unsigned int i=0; i<mListOfContours.size(); i++) {
288 #if VTK_MAJOR_VERSION <= 5
289 append->AddInput(mListOfContours[i]->GetMesh());
291 append->AddInputData(mListOfContours[i]->GetMesh());
296 mMesh = vtkSmartPointer<vtkPolyData>::New();
297 mMesh->DeepCopy(append->GetOutput());
298 mMeshIsUpToDate = true;
300 //--------------------------------------------------------------------
303 #if GDCM_MAJOR_VERSION == 2
304 //--------------------------------------------------------------------
305 void clitk::DicomRT_ROI::UpdateDicomItem()
307 FATAL("Error : compile vv with itk4 + external gdcm");
309 if (GetDicomUptoDateFlag()) return;
310 DD("ROI::UpdateDicomItem");
313 // From now, only some item can be modified
315 // Set ROI Name 0x3006,0x26>
316 gdcm::Attribute<0x3006,0x26> roiname;
317 roiname.SetValue(GetName());
318 gdcm::DataElement de = roiname.GetAsDataElement();
319 gdcm::DataSet & ds = mItemInfo->GetNestedDataSet();
322 // From MESH to CONTOURS
323 ComputeContoursFromImage();
326 DD(mListOfContours.size());
327 for(uint i=0; i<mListOfContours.size(); i++) {
329 DicomRT_Contour::Pointer contour = mListOfContours[i];
330 contour->UpdateDicomItem();//mItemContour);
334 unsigned int nitems = mContoursSequenceOfItems->GetNumberOfItems();
337 // Write [Contour Sequence] = 0x3006,0x0040)
338 gdcm::DataSet & dsc = mItemContour->GetNestedDataSet();
339 gdcm::Tag tcsq(0x3006,0x0040);
340 const gdcm::DataElement& csq = dsc.GetDataElement( tcsq );
341 gdcm::DataElement dec(csq);
342 dec.SetValue(*mContoursSequenceOfItems);
345 gdcm::DataSet & a = mContoursSequenceOfItems->GetItem(1).GetNestedDataSet();
346 gdcm::Attribute<0x3006,0x0050> at;
347 gdcm::Tag tcontourdata(0x3006,0x0050);
348 gdcm::DataElement contourdata = a.GetDataElement( tcontourdata );
349 at.SetFromDataElement( contourdata );
350 const double* points = at.GetValues();
354 //--------------------------------------------------------------------
357 //--------------------------------------------------------------------
358 void clitk::DicomRT_ROI::SetFromBinaryImage(vvImage::Pointer image, int n,
360 std::vector<double> color,
361 std::string filename)
364 // ROI number [Referenced ROI Number]
369 mFilename = filename;
371 // ROI Color [ROI Display Color]
374 // No contours [Contour Sequence]
375 mListOfContours.clear();
380 //--------------------------------------------------------------------
383 //--------------------------------------------------------------------
384 vvImage * clitk::DicomRT_ROI::GetImage() const
388 //--------------------------------------------------------------------
391 //--------------------------------------------------------------------
392 void clitk::DicomRT_ROI::ComputeContoursFromImage()
394 FATAL("ComputeContoursFromImage should not be call. To be replace");
395 DD("ComputeMeshFromImage");
397 // Check that an image is loaded
400 // Only consider 3D here
401 if (mImage->GetNumberOfDimensions() != 3) {
402 FATAL("DicomRT_ROI::ComputeMeshFromImage only work with 3D images");
406 vtkImageData * image = mImage->GetVTKImages()[0];
408 // Get initial extend for the clipping
409 vtkSmartPointer<vtkImageClip> clipper = vtkSmartPointer<vtkImageClip>::New();
410 #if VTK_MAJOR_VERSION <= 5
411 clipper->SetInput(image);
413 clipper->SetInputData(image);
416 int* extent = image->GetExtent();
418 // std::vector<int> extend;
422 uint n = image->GetDimensions()[2];
424 DD(mListOfContours.size());
425 mListOfContours.resize(n); /// ???FIXME
426 DD(mListOfContours.size());
427 std::vector<vtkSmartPointer<vtkPolyData> > contours;
428 for(uint i=0; i<n; i++) {
431 // FIXME vtkDiscreteMarchingCubes INSTEAD
434 vtkSmartPointer<vtkMarchingSquares> squares = vtkSmartPointer<vtkMarchingSquares>::New();
435 #if VTK_MAJOR_VERSION <= 5
436 squares->SetInput(image);
438 squares->SetInputData(image);
440 squares->SetImageRange(extent[0], extent[1], extent[2], extent[3], i, i);
441 squares->SetValue(1, 1.0);
443 DD(squares->GetNumberOfContours());
445 //clitk::DicomRT_Contour * contour = new clitk::DicomRT_Contour();
446 //mListOfContours[i]->SetMesh(squares->GetOutput());
449 vtkSmartPointer<vtkPolyData> m = squares->GetOutput();
450 contours.push_back(m);
453 // Clip to the current slice
454 extent[4] = extent[5] = image->GetOrigin()[2]+i*image->GetSpacing()[2];
456 // Prepare the marching squares
457 vtkSmartPointer<vtkMarchingSquares> squares = vtkSmartPointer<vtkMarchingSquares>::New();
458 clipper->SetOutputWholeExtent(extent[0],extent[1],extent[2],
459 extent[3],extent[4],extent[5]);
461 squares->SetInput(clipper->GetOutput());
463 DD(squares->GetNumberOfContours());
464 mListOfContours[i]->SetMesh(squares->GetOutput());
469 vtkSmartPointer<vtkAppendPolyData> append = vtkSmartPointer<vtkAppendPolyData>::New();
470 for(unsigned int i=0; i<n; i++) {
471 #if VTK_MAJOR_VERSION <= 5
472 append->AddInput(contours[i]);
474 append->AddInputData(contours[i]);
479 mMesh = vtkSmartPointer<vtkPolyData>::New();
480 mMesh->DeepCopy(append->GetOutput());
483 vtkPolyDataWriter * w = vtkPolyDataWriter::New();
484 #if VTK_MAJOR_VERSION <= 5
487 w->SetInputData(mMesh);
489 w->SetFileName("toto.vtk");
494 //--------------------------------------------------------------------
497 //--------------------------------------------------------------------
498 #if CLITK_USE_SYSTEM_GDCM == 1
499 void clitk::DicomRT_ROI::Read(vtkSmartPointer<vtkGDCMPolyDataReader> & reader, int roiindex)
501 vtkRTStructSetProperties * p = reader->GetRTStructSetProperties();
503 mName = p->GetStructureSetROIName(roiindex);
504 mNumber = p->GetStructureSetROINumber(roiindex);
506 //mColor = //FIXME !!
508 // gdcm::Attribute<0x3006,0x002a> color = {};
510 // const gdcm::DataSet & nestedds = mItemContour->GetNestedDataSet();
511 // color.SetFromDataSet( nestedds );
512 // assert( color.GetNumberOfValues() == 3 );
513 // mColor[0] = color.GetValue(0);
514 // mColor[1] = color.GetValue(1);
515 // mColor[2] = color.GetValue(2);
518 SetDicomUptodateFlag(true);
520 mMesh = reader->GetOutput(roiindex);
521 DicomRT_Contour::Pointer c = DicomRT_Contour::New();
522 c->SetMesh(mMesh); // FIXME no GetZ, not GetPoints
523 mMeshIsUpToDate = true;
524 mListOfContours.push_back(c);
527 //--------------------------------------------------------------------