| 50 | HashImageFilter::HashImageFilter() = default; |
| 51 | |
| 52 | std::string |
| 53 | HashImageFilter::ToString() const |
| 54 | { |
| 55 | std::ostringstream out; |
| 56 | out << "itk::simple::HashImageFilter" << std::endl; |
| 57 | out << "HashFunction: "; |
| 58 | switch (this->m_HashFunction) |
| 59 | { |
| 60 | case SHA1: |
| 61 | out << "SHA1"; |
| 62 | break; |
| 63 | case MD5: |
| 64 | out << "MD5"; |
| 65 | break; |
| 66 | } |
| 67 | out << std::endl; |
| 68 | out << ProcessObject::ToString(); |
| 69 | return out.str(); |
| 70 | } |
| 71 | |
| 72 | HashImageFilter::HashFunction |
| 73 | HashImageFilter::GetHashFunction() const |
nothing calls this directly
no test coverage detected