@@ -84,7 +84,6 @@ namespace gdcm
84
84
85
85
void ProcessAIOP (Scanner const &, Directory::FilenamesType const &subset, const char *iopval)
86
86
{
87
- std::cout << " IOP: " << iopval << std::endl;
88
87
IPPSorter ipp;
89
88
ipp.SetComputeZSpacing (true );
90
89
ipp.SetZSpacingTolerance (1e-3 ); // ??
@@ -103,7 +102,6 @@ namespace gdcm
103
102
UnsortedFiles.push_back (subset);
104
103
return ;
105
104
}
106
- ipp.Print (std::cout);
107
105
SortedFiles.push_back (ipp.GetFilenames ());
108
106
}
109
107
@@ -120,7 +118,6 @@ namespace gdcm
120
118
Directory::FilenamesType::const_iterator file = files.begin ();
121
119
file != files.end (); ++file)
122
120
{
123
- // std::cout << *file << std::endl;
124
121
const char *value = s.GetValue (file->c_str (), gdcm::t4);
125
122
assert (value);
126
123
iopset.insert (value);
@@ -132,7 +129,6 @@ namespace gdcm
132
129
return ;
133
130
}
134
131
135
- std::cout << " Frame of Ref: " << frameuid << std::endl;
136
132
if (n == 1 )
137
133
{
138
134
ProcessAIOP (s, files, iopset.begin ()->c_str ());
@@ -183,7 +179,6 @@ namespace gdcm
183
179
184
180
void ProcessASeries (Scanner const &s, const char *seriesuid)
185
181
{
186
- std::cout << " Series: " << seriesuid << std::endl;
187
182
// let's find all files belonging to this series:
188
183
Directory::FilenamesType seriesfiles = GetAllFilenamesFromTagToValue (
189
184
s, s.GetFilenames (), t2, seriesuid);
@@ -198,7 +193,6 @@ namespace gdcm
198
193
199
194
void ProcessAStudy (Scanner const &s, const char *studyuid)
200
195
{
201
- std::cout << " Study: " << studyuid << std::endl;
202
196
gdcm::Scanner::ValuesType vt2 = s.GetValues (t2);
203
197
for (
204
198
gdcm::Scanner::ValuesType::const_iterator it = vt2.begin (); it != vt2.end (); ++it)
0 commit comments