]> Creatis software - clitk.git/blob - common/clitkDicomRT_Contour.cxx
first version of Image2DicomRT (dos not work)
[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 <<<<<<< Updated upstream
148 <<<<<<< variant A
149 >>>>>>> variant B
150   //  unsigned int npts = at.GetNumberOfValues() / 3;
151 ======= end
152 =======
153   //  unsigned int npts = at.GetNumberOfValues() / 3;
154 >>>>>>> Stashed changes
155
156   assert(at.GetNumberOfValues() == static_cast<unsigned int>(mNbOfPoints)*3);
157
158   // Organize values
159   mData = vtkSmartPointer<vtkPoints>::New();
160   mData->SetDataTypeToDouble();
161   mData->SetNumberOfPoints(mNbOfPoints);
162   for(unsigned int i=0; i<mNbOfPoints; i++) {
163     double p[3];
164     p[0] = points[i*3];
165     p[1] = points[i*3+1];
166     p[2] = points[i*3+2];
167     mData->SetPoint(i, p);
168     if (mZ == -1) mZ = p[2];
169     if (p[2] != mZ) {
170       DD(i);
171       DD(p[2]);
172       DD(mZ);
173       std::cout << "ERROR ! contour not in the same slice" << std::endl;
174       assert(p[2] == mZ);
175     }
176   }
177
178   return true;
179
180 }
181 #else
182 bool clitk::DicomRT_Contour::Read(gdcm::SQItem * item)
183 {
184
185   // Contour type [Contour Geometric Type]
186   mType = item->GetEntryValue(0x3006,0x0042);
187   // DD(mType);
188   if (mType != "CLOSED_PLANAR " && mType != "POINT ") { ///WARNING to the space after the name ...
189     //std::cerr << "Skip this contour : type=" << mType << std::endl;
190     return false;
191   }
192   if (mType == "POINT ") {
193     std::cerr << "Warning: POINT type not fully supported. (don't use GetMesh() with this!)"
194       << std::endl;
195   }
196
197   // Number of points [Number of Contour Points]
198   mNbOfPoints = parse_value<int>(item->GetEntryValue(0x3006,0x0046));
199   // DD(mNbOfPoints);
200
201   // Read values [Contour Data]
202   std::vector<float> points = parse_string<float>(item->GetEntryValue(0x3006,0x0050),'\\');
203   assert(points.size() == static_cast<unsigned int>(mNbOfPoints)*3);
204
205   // Organize values
206   mData = vtkSmartPointer<vtkPoints>::New();
207   mData->SetDataTypeToDouble();
208   mData->SetNumberOfPoints(mNbOfPoints);
209   for(unsigned int i=0; i<mNbOfPoints; i++) {
210     double p[3];
211     p[0] = points[i*3];
212     p[1] = points[i*3+1];
213     p[2] = points[i*3+2];
214     mData->SetPoint(i, p);
215     if (mZ == -1) mZ = p[2];
216     if (p[2] != mZ) {
217       DD(i);
218       DD(p[2]);
219       DD(mZ);
220       std::cout << "ERROR ! contour not in the same slice" << std::endl;
221       assert(p[2] == mZ);
222     }
223   }
224
225   return true;
226 }
227 #endif
228 //--------------------------------------------------------------------
229
230
231 //--------------------------------------------------------------------
232 vtkPolyData * clitk::DicomRT_Contour::GetMesh()
233 {
234   if (!mMeshIsUpToDate) {
235     ComputeMeshFromDataPoints();
236   }
237   return mMesh;
238 }
239 //--------------------------------------------------------------------
240
241
242 //--------------------------------------------------------------------
243 void clitk::DicomRT_Contour::SetMesh(vtkPolyData * mesh)
244 {
245   mMesh = mesh;
246 }
247 //--------------------------------------------------------------------
248
249
250 //--------------------------------------------------------------------
251 void clitk::DicomRT_Contour::ComputeMeshFromDataPoints()
252 {
253 //  DD("ComputeMesh Contour");
254   mMesh = vtkSmartPointer<vtkPolyData>::New();
255   mMesh->Allocate(); //for cell structures
256   mPoints = vtkSmartPointer<vtkPoints>::New();
257   mMesh->SetPoints(mPoints);
258   vtkIdType ids[2];
259   for (unsigned int idx=0 ; idx<mNbOfPoints ; idx++) {
260     mMesh->GetPoints()->InsertNextPoint(mData->GetPoint(idx)[0],
261                                         mData->GetPoint(idx)[1],
262                                         mData->GetPoint(idx)[2]);
263     ids[0]=idx;
264     ids[1]=(ids[0]+1) % mNbOfPoints; //0-1,1-2,...,n-1-0
265     mMesh->GetLines()->InsertNextCell(2,ids);
266   }
267   mMeshIsUpToDate = true;
268 }
269 //--------------------------------------------------------------------
270
271
272 //--------------------------------------------------------------------
273 void clitk::DicomRT_Contour::ComputeDataPointsFromMesh()
274 {
275   DD("ComputeDataPointsFromMesh");
276
277
278   /*todo
279
280   mMesh = vtkSmartPointer<vtkPolyData>::New();
281   mMesh->Allocate(); //for cell structures
282   mPoints = vtkSmartPointer<vtkPoints>::New();
283   mMesh->SetPoints(mPoints);
284   vtkIdType ids[2];
285   for (unsigned int idx=0 ; idx<mNbOfPoints ; idx++) {
286     mMesh->GetPoints()->InsertNextPoint(mData->GetPoint(idx)[0],
287                                         mData->GetPoint(idx)[1],
288                                         mData->GetPoint(idx)[2]);
289     ids[0]=idx;
290     ids[1]=(ids[0]+1) % mNbOfPoints; //0-1,1-2,...,n-1-0
291     mMesh->GetLines()->InsertNextCell(2,ids);
292   }
293   mMeshIsUpToDate = true;
294 */
295 }
296 //--------------------------------------------------------------------