| 93 | } |
| 94 | |
| 95 | mitk::DICOMFileReader::Pointer |
| 96 | mitk::TestDICOMLoading |
| 97 | ::BuildDICOMReader() |
| 98 | { |
| 99 | DICOMFileReader::Pointer reader; |
| 100 | |
| 101 | std::string xmlDescription = DICOMReaderConfigurator::GetConfigStringFromModuleResource("configurations/3DnT/1_default_config.xml"); |
| 102 | |
| 103 | if (!xmlDescription.empty()) |
| 104 | { |
| 105 | DICOMReaderConfigurator::Pointer configurator = DICOMReaderConfigurator::New(); |
| 106 | reader = configurator->CreateFromUTF8ConfigString(xmlDescription); |
| 107 | } |
| 108 | |
| 109 | return reader; |
| 110 | } |
| 111 | |
| 112 | mitk::Image::Pointer |
| 113 | mitk::TestDICOMLoading |
no test coverage detected