| 95 | ImageFileReader::ImageFileReader() = default; |
| 96 | |
| 97 | std::string |
| 98 | ImageFileReader::ToString() const |
| 99 | { |
| 100 | |
| 101 | std::ostringstream out; |
| 102 | out << "itk::simple::ImageFileReader"; |
| 103 | out << std::endl; |
| 104 | out << " FileName: \""; |
| 105 | this->ToStringHelper(out, this->m_FileName) << "\"" << std::endl; |
| 106 | out << " ExtractSize: " << this->m_ExtractSize << std::endl; |
| 107 | out << " ExtractIndex: " << this->m_ExtractIndex << std::endl; |
| 108 | |
| 109 | out << " Image Information:" << std::endl << " PixelType: "; |
| 110 | this->ToStringHelper(out, this->m_PixelType) << std::endl; |
| 111 | out << " Dimension: " << this->m_Dimension << std::endl; |
| 112 | out << " NumberOfComponents: " << this->m_NumberOfComponents << std::endl; |
| 113 | out << " Direction: " << this->m_Direction << std::endl; |
| 114 | out << " Origin: " << this->m_Origin << std::endl; |
| 115 | out << " Spacing: " << this->m_Spacing << std::endl; |
| 116 | out << " Size: " << this->m_Size << std::endl; |
| 117 | |
| 118 | out << ImageReaderBase::ToString(); |
| 119 | return out.str(); |
| 120 | } |
| 121 | |
| 122 | void |
| 123 | ImageFileReader::SetFileName(const PathType & fn) |
nothing calls this directly
no test coverage detected