MCPcopy Create free account
hub / github.com/SimpleITK/SimpleITK / ToString

Method ToString

Code/IO/src/sitkImageReaderBase.cxx:50–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48{}
49
50std::string
51ImageReaderBase ::ToString() const
52{
53 std::ostringstream out;
54 out << " OutputPixelType: ";
55 this->ToStringHelper(out, this->m_OutputPixelType) << std::endl;
56 out << " LoadPrivateTags: ";
57 this->ToStringHelper(out, this->m_LoadPrivateTags) << std::endl;
58 out << " ImageIOName: ";
59 this->ToStringHelper(out, this->m_ImageIOName) << std::endl;
60 out << " Registered ImageIO:" << std::endl;
61 ioutils::PrintRegisteredImageIOs(out);
62 out << ProcessObject::ToString();
63 return out.str();
64}
65
66
67std::vector<std::string>

Callers

nothing calls this directly

Calls 2

PrintRegisteredImageIOsFunction · 0.85
ToStringFunction · 0.85

Tested by

no test coverage detected