| 425 | } |
| 426 | |
| 427 | IFileReader::ConfidenceLevel BaseDICOMReaderService::GetConfidenceLevel() const |
| 428 | { |
| 429 | IFileReader::ConfidenceLevel abstractConfidence = AbstractFileReader::GetConfidenceLevel(); |
| 430 | |
| 431 | if (Unsupported == abstractConfidence) |
| 432 | { |
| 433 | if (itksys::SystemTools::FileIsDirectory(this->GetInputLocation().c_str())) |
| 434 | { |
| 435 | // In principle we support dicom directories |
| 436 | return Supported; |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | return abstractConfidence; |
| 441 | } |
| 442 | |
| 443 | std::string GenerateNameFromDICOMProperties(const mitk::IPropertyProvider* provider) |
| 444 | { |
nothing calls this directly
no test coverage detected