| 434 | // void AllocateOutputImages(); |
| 435 | |
| 436 | bool mitk::DICOMITKSeriesGDCMReader::LoadImages() |
| 437 | { |
| 438 | bool success = true; |
| 439 | |
| 440 | unsigned int numberOfOutputs = this->GetNumberOfOutputs(); |
| 441 | for ( unsigned int o = 0; o < numberOfOutputs; ++o ) |
| 442 | { |
| 443 | success &= this->LoadMitkImageForOutput( o ); |
| 444 | } |
| 445 | |
| 446 | return success; |
| 447 | } |
| 448 | |
| 449 | bool mitk::DICOMITKSeriesGDCMReader::LoadMitkImageForImageBlockDescriptor( |
| 450 | DICOMImageBlockDescriptor& block ) const |
no test coverage detected