File: itkLabelMapTest.cxx

package info (click to toggle)
insighttoolkit 3.18.0-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 110,432 kB
  • ctags: 74,559
  • sloc: cpp: 412,627; ansic: 196,210; fortran: 28,000; python: 3,852; tcl: 2,005; sh: 1,186; java: 583; makefile: 458; csh: 220; perl: 193; xml: 20
file content (188 lines) | stat: -rw-r--r-- 5,103 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*=========================================================================

  Program:   Insight Segmentation & Registration Toolkit
  Module:    $RCSfile: itkLabelMapTest.cxx,v $
  Language:  C++
  Date:      $Date: 2009-12-10 10:55:21 $
  Version:   $Revision: 1.4 $

  Copyright (c) Insight Software Consortium. All rights reserved.
  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even 
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     PURPOSE.  See the above copyright notices for more information.

=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif

#include <iostream>
#include "itkLabelMap.h"
#include "itkLabelObject.h"

int itkLabelMapTest(int argc, char * argv[])
{

  if( argc != 1 )
    {
    std::cerr << "usage: " << argv[0] << "" << std::endl;
    return EXIT_FAILURE;
    }

  const int dim = 3;
  
  typedef itk::LabelObject< unsigned long, dim > LabelObjectType;
  typedef LabelObjectType::IndexType             IndexType;
  typedef itk::LabelMap< LabelObjectType >       LabelMapType;
  typedef LabelMapType::RegionType               RegionType;
  typedef LabelMapType::SizeType                 SizeType;
  typedef LabelMapType::LabelObjectVectorType    LabelObjectVectorType;
  typedef LabelMapType::LabelVectorType          LabelVectorType;
  typedef LabelMapType::LabelObjectContainerType LabelObjectContainerType;
  
  LabelMapType::Pointer map = LabelMapType::New();

  SizeType sizeIn;
  sizeIn[0] = 10;
  sizeIn[1] = 20;
  sizeIn[2] = 30;
  map->SetRegions( sizeIn );
  map->Allocate();

  RegionType regionIn;
  regionIn.SetSize(sizeIn);

  RegionType regionOut;
  regionOut = map->GetRequestedRegion();
  itkAssertOrThrowMacro ( (regionOut == regionIn), "SetRegions (size) failed");
  map->Initialize();
  
  IndexType index;
  index[0] = 1;
  index[1] = 3;
  index[2] = 5;

  sizeIn[0] = 100;
  sizeIn[1] = 200;
  sizeIn[2] = 300;

  regionIn.SetIndex(index); 
  regionIn.SetSize(sizeIn); 
  map->SetRegions( regionIn );
  map->Allocate();

  regionOut = map->GetRequestedRegion();
  itkAssertOrThrowMacro ( (regionOut == regionIn), "SetRegions (region) failed");

  LabelMapType::Pointer mapGraft = LabelMapType::New();
  mapGraft->Graft( map );
  regionOut = mapGraft->GetRequestedRegion();
  itkAssertOrThrowMacro ( (regionOut == regionIn), "Graft failed");

  mapGraft->SetBackgroundValue(255);
  itkAssertOrThrowMacro( (mapGraft->GetBackgroundValue() == 255), "Set/GetBackground failed.");
  
  LabelObjectType::Pointer lo = LabelObjectType::New();
  lo->SetLabel(1);
  
  IndexType idx;
  idx[0] = 1;
  idx[1] = 20;
  idx[2] = 30;
  lo->AddLine( idx, 10 );
  
  idx[0] = 5;
  lo->AddLine( idx, 10 );

  idx[0] = 5;
  idx[1] = 0;
  idx[2] = 0;
  lo->AddLine( idx, 10 );

  idx[0] = 5;
  idx[1] = 0;
  idx[2] = 1;
  lo->AddLine( idx, 10 );

  idx[0] = 5;
  idx[1] = 1;
  idx[2] = 0;
  lo->AddLine( idx, 10 );
  
  idx[0] = 0;
  idx[1] = 1;
  idx[2] = 1;
  lo->AddLine( idx, 10 );
  
  idx[0] = 10;
  idx[1] = 1;
  idx[2] = 1;
  lo->AddLine( idx, 1 );
  
  LabelObjectType::Pointer loCheck;
  
  map->AddLabelObject(lo);
  loCheck = map->GetLabelObject(idx);
  itkAssertOrThrowMacro ( (loCheck == lo), "Add/GetLabelObject failed");
  
  LabelObjectVectorType loVector;
  loVector = map->GetLabelObjects();
  itkAssertOrThrowMacro ( (loVector[0] == lo), "GetLabelObjects failed");

  LabelVectorType loLabels;
  loLabels = map->GetLabels();
  itkAssertOrThrowMacro ( (loLabels[0] == 1), "GetLabels failed");

  LabelObjectType::Pointer lo2 = LabelObjectType::New();

  idx[0] = 1;
  idx[1] = 21;
  idx[2] = 30;
  lo2->AddLine( idx, 10 );


  map->PushLabelObject(lo2);
  loCheck = map->GetLabelObject(idx);
  itkAssertOrThrowMacro ( (loCheck == lo2), "Push/GetLabelObject failed");

  idx[0] = 1;
  idx[1] = 21;
  idx[2] = 31;
  map->SetPixel( idx, 3 );

  idx[0] = 1;
  idx[1] = 21;
  idx[2] = 32;
  map->SetLine( idx, 11, 3);

  idx[0] = 2;
  idx[1] = 21;
  idx[2] = 32;
  itkAssertOrThrowMacro ( (map->GetPixel(idx) == 3), "SetPixel/SetLine/GetPixel failed");

  LabelObjectContainerType container = map->GetLabelObjectContainer();
  itkAssertOrThrowMacro ( (container.size() == 3), "GetLabelObjectContainer failed");
  itkAssertOrThrowMacro ( (map->GetNumberOfLabelObjects() == 3), "GetNumberOfLabelObjects failed");
  itkAssertOrThrowMacro ( map->HasLabel(1), "HasLabel failed");

  loCheck = map->GetNthLabelObject(1);
  itkAssertOrThrowMacro ( (loCheck == lo2), "GetNthLabelObject failed");

  itkAssertOrThrowMacro ( (map->GetPixel(idx) == 3), "SetPixel/SetLine/GetPixel failed");

  map->Print(std::cout);

  map->PrintLabelObjects();

  map->Optimize();

  map->RemoveLabelObject( lo );
  map->RemoveLabel(2);
  itkAssertOrThrowMacro ( (map->GetNumberOfLabelObjects() == 1), "Remove LabelObject/Label failed");
  map->ClearLabels();
  itkAssertOrThrowMacro ( (map->GetNumberOfLabelObjects() == 0), "ClearLabels failed");

  return EXIT_SUCCESS;
}