]> Creatis software - clitk.git/blob - common/clitkDicomRT_Contour.cxx
987456392941e873f0e022e55553172acaa9ea5e
[clitk.git] / common / clitkDicomRT_Contour.cxx
1 /*=========================================================================
2   Program:         vv http://www.creatis.insa-lyon.fr/rio/vv
3   Main authors :   XX XX XX
4
5   Authors belongs to:
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
9
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.
13
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
17
18   =========================================================================*/
19
20 #include "clitkDicomRT_Contour.h"
21 #include <vtkCellArray.h>
22
23 #if GDCM_MAJOR_VERSION == 2
24 #include "gdcmAttribute.h"
25 #include "gdcmItem.h"
26 #endif
27
28 //--------------------------------------------------------------------
29 clitk::DicomRT_Contour::DicomRT_Contour()
30 {
31   mMeshIsUpToDate = false;
32   mNbOfPoints = 0;
33   mZ = -1;
34 }
35 //--------------------------------------------------------------------
36
37
38 //--------------------------------------------------------------------
39 clitk::DicomRT_Contour::~DicomRT_Contour()
40 {
41
42 }
43 //--------------------------------------------------------------------
44
45
46
47 //--------------------------------------------------------------------
48 void clitk::DicomRT_Contour::Print(std::ostream & os) const
49 {
50   DD("TODO : print Contours");
51 }
52 //--------------------------------------------------------------------
53
54
55 //--------------------------------------------------------------------
56 void clitk::DicomRT_Contour::UpdateDicomItem()
57 {
58   DD("DicomRT_Contour::UpdateDicomItem");
59
60   gdcm::DataSet & nestedds = mItem->GetNestedDataSet();
61
62   //NON CONSIDER CONTOUR ITEM NOT SEQ ITEM ?
63
64   // Contour type [Contour Geometric Type]
65   gdcm::Attribute<0x3006,0x0042> contgeotype;
66   contgeotype.SetFromDataSet( nestedds );
67
68   // Number of points [Number of Contour Points]
69   gdcm::Attribute<0x3006,0x0046> numcontpoints;
70   numcontpoints.SetFromDataSet( nestedds );
71   DD(mNbOfPoints);
72   mNbOfPoints = numcontpoints.GetValue();
73   DD(mNbOfPoints);
74
75   // Contour dicom values from DataPoints
76   //ComputeDataPointsFromMesh();
77   uint nb = mData->GetNumberOfPoints();
78   std::vector<double> points;
79   points.resize(mNbOfPoints*3);
80   for(unsigned int i=0; i<nb; i++) {
81     double * p = mData->GetPoint(i);
82     points[i*3] = p[0];
83     points[i*3+1] = p[1];
84     points[i*3+2] = p[2];
85   }
86
87   // Get attribute
88   gdcm::Attribute<0x3006,0x0050> at;
89   gdcm::Tag tcontourdata(0x3006,0x0050);
90   gdcm::DataElement contourdata = nestedds.GetDataElement( tcontourdata );
91   at.SetFromDataElement( contourdata );
92
93   // Set attribute
94   at.SetValues(&points[0], points.size(), false);
95   DD(at.GetValues()[0]);
96   
97   DD("replace");
98   nestedds.Replace(at.GetAsDataElement());
99   DD("done");
100
101   // Change Number of points [Number of Contour Points]
102   numcontpoints.SetValue(nb);
103   nestedds.Replace(numcontpoints.GetAsDataElement());
104
105   // Test
106   gdcm::DataElement aa = nestedds.GetDataElement( tcontourdata );
107   at.SetFromDataElement( aa );
108   const double* bb = at.GetValues();
109   DD(bb[0]);
110
111 }
112 //--------------------------------------------------------------------
113
114
115 //--------------------------------------------------------------------
116 #if GDCM_MAJOR_VERSION == 2
117 bool clitk::DicomRT_Contour::Read(gdcm::Item * item)
118 {
119   mItem = item;
120   
121   const gdcm::DataSet& nestedds2 = item->GetNestedDataSet();
122
123   // Contour type [Contour Geometric Type]
124   gdcm::Attribute<0x3006,0x0042> contgeotype;
125   contgeotype.SetFromDataSet( nestedds2 );
126
127   if (contgeotype.GetValue() != "CLOSED_PLANAR " && contgeotype.GetValue() != "POINT ") { ///WARNING to the space after the name ...
128     //std::cerr << "Skip this contour : type=" << mType << std::endl;
129     return false;
130   }
131   if (contgeotype.GetValue() == "POINT ") {
132     std::cerr << "Warning: POINT type not fully supported. (don't use GetMesh() with this!)"
133       << std::endl;
134   }
135
136   gdcm::Attribute<0x3006,0x0046> numcontpoints;
137   numcontpoints.SetFromDataSet( nestedds2 );
138   // Number of points [Number of Contour Points]
139   mNbOfPoints = numcontpoints.GetValue();
140   // DD(mNbOfPoints);
141
142   gdcm::Attribute<0x3006,0x0050> at;
143   gdcm::Tag tcontourdata(0x3006,0x0050);
144   const gdcm::DataElement & contourdata = nestedds2.GetDataElement( tcontourdata );
145   at.SetFromDataElement( contourdata );
146   const double* points = at.GetValues();
147   //  unsigned int npts = at.GetNumberOfValues() / 3;
148   assert(at.GetNumberOfValues() == static_cast<unsigned int>(mNbOfPoints)*3);
149
150   // Organize values
151   mData = vtkSmartPointer<vtkPoints>::New();
152   mData->SetDataTypeToDouble();
153   mData->SetNumberOfPoints(mNbOfPoints);
154   for(unsigned int i=0; i<mNbOfPoints; i++) {
155     double p[3];
156     p[0] = points[i*3];
157     p[1] = points[i*3+1];
158     p[2] = points[i*3+2];
159     mData->SetPoint(i, p);
160     if (mZ == -1) mZ = p[2];
161     if (p[2] != mZ) {
162       DD(i);
163       DD(p[2]);
164       DD(mZ);
165       std::cout << "ERROR ! contour not in the same slice" << std::endl;
166       assert(p[2] == mZ);
167     }
168   }
169
170   return true;
171
172 }
173 #else
174 bool clitk::DicomRT_Contour::Read(gdcm::SQItem * item)
175 {
176
177   // Contour type [Contour Geometric Type]
178   mType = item->GetEntryValue(0x3006,0x0042);
179   // DD(mType);
180   if (mType != "CLOSED_PLANAR " && mType != "POINT ") { ///WARNING to the space after the name ...
181     //std::cerr << "Skip this contour : type=" << mType << std::endl;
182     return false;
183   }
184   if (mType == "POINT ") {
185     std::cerr << "Warning: POINT type not fully supported. (don't use GetMesh() with this!)"
186       << std::endl;
187   }
188
189   // Number of points [Number of Contour Points]
190   mNbOfPoints = parse_value<int>(item->GetEntryValue(0x3006,0x0046));
191   // DD(mNbOfPoints);
192
193   // Read values [Contour Data]
194   std::vector<float> points = parse_string<float>(item->GetEntryValue(0x3006,0x0050),'\\');
195   assert(points.size() == static_cast<unsigned int>(mNbOfPoints)*3);
196
197   // Organize values
198   mData = vtkSmartPointer<vtkPoints>::New();
199   mData->SetDataTypeToDouble();
200   mData->SetNumberOfPoints(mNbOfPoints);
201   for(unsigned int i=0; i<mNbOfPoints; i++) {
202     double p[3];
203     p[0] = points[i*3];
204     p[1] = points[i*3+1];
205     p[2] = points[i*3+2];
206     mData->SetPoint(i, p);
207     if (mZ == -1) mZ = p[2];
208     if (p[2] != mZ) {
209       DD(i);
210       DD(p[2]);
211       DD(mZ);
212       std::cout << "ERROR ! contour not in the same slice" << std::endl;
213       assert(p[2] == mZ);
214     }
215   }
216
217   return true;
218 }
219 #endif
220 //--------------------------------------------------------------------
221
222
223 //--------------------------------------------------------------------
224 vtkPolyData * clitk::DicomRT_Contour::GetMesh()
225 {
226   if (!mMeshIsUpToDate) {
227     ComputeMeshFromDataPoints();
228   }
229   return mMesh;
230 }
231 //--------------------------------------------------------------------
232
233
234 //--------------------------------------------------------------------
235 void clitk::DicomRT_Contour::SetMesh(vtkPolyData * mesh)
236 {
237   mMesh = mesh;
238 }
239 //--------------------------------------------------------------------
240
241
242 //--------------------------------------------------------------------
243 void clitk::DicomRT_Contour::ComputeMeshFromDataPoints()
244 {
245 //  DD("ComputeMesh Contour");
246   mMesh = vtkSmartPointer<vtkPolyData>::New();
247   mMesh->Allocate(); //for cell structures
248   mPoints = vtkSmartPointer<vtkPoints>::New();
249   mMesh->SetPoints(mPoints);
250   vtkIdType ids[2];
251   for (unsigned int idx=0 ; idx<mNbOfPoints ; idx++) {
252     mMesh->GetPoints()->InsertNextPoint(mData->GetPoint(idx)[0],
253                                         mData->GetPoint(idx)[1],
254                                         mData->GetPoint(idx)[2]);
255     ids[0]=idx;
256     ids[1]=(ids[0]+1) % mNbOfPoints; //0-1,1-2,...,n-1-0
257     mMesh->GetLines()->InsertNextCell(2,ids);
258   }
259   mMeshIsUpToDate = true;
260 }
261 //--------------------------------------------------------------------
262
263
264 //--------------------------------------------------------------------
265 void clitk::DicomRT_Contour::ComputeDataPointsFromMesh()
266 {
267   DD("ComputeDataPointsFromMesh");
268
269
270   /*todo
271
272   mMesh = vtkSmartPointer<vtkPolyData>::New();
273   mMesh->Allocate(); //for cell structures
274   mPoints = vtkSmartPointer<vtkPoints>::New();
275   mMesh->SetPoints(mPoints);
276   vtkIdType ids[2];
277   for (unsigned int idx=0 ; idx<mNbOfPoints ; idx++) {
278     mMesh->GetPoints()->InsertNextPoint(mData->GetPoint(idx)[0],
279                                         mData->GetPoint(idx)[1],
280                                         mData->GetPoint(idx)[2]);
281     ids[0]=idx;
282     ids[1]=(ids[0]+1) % mNbOfPoints; //0-1,1-2,...,n-1-0
283     mMesh->GetLines()->InsertNextCell(2,ids);
284   }
285   mMeshIsUpToDate = true;
286 */
287 }
288 //--------------------------------------------------------------------