| 240 | } |
| 241 | |
| 242 | bool |
| 243 | mitk::ThreeDnTDICOMSeriesReader |
| 244 | ::LoadImages() |
| 245 | { |
| 246 | bool success = true; |
| 247 | |
| 248 | unsigned int numberOfOutputs = this->GetNumberOfOutputs(); |
| 249 | for (unsigned int o = 0; o < numberOfOutputs; ++o) |
| 250 | { |
| 251 | const DICOMImageBlockDescriptor& block = this->InternalGetOutput(o); |
| 252 | |
| 253 | if (block.GetFlag("3D+t", false)) |
| 254 | { |
| 255 | success &= this->LoadMitkImageForOutput(o); |
| 256 | } |
| 257 | else |
| 258 | { |
| 259 | success &= DICOMITKSeriesGDCMReader::LoadMitkImageForOutput(o); // let superclass handle non-3D+t |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | return success; |
| 264 | } |
| 265 | |
| 266 | bool |
| 267 | mitk::ThreeDnTDICOMSeriesReader |
nothing calls this directly
no test coverage detected