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

Method ToString

Code/BasicFilters/src/sitkExtractImageFilter.cxx:63–80  ·  view source on GitHub ↗

ToString

Source from the content-addressed store, hash-verified

61// ToString
62//
63std::string
64ExtractImageFilter::ToString() const
65{
66 std::ostringstream out;
67 out << "itk::simple::ExtractImageFilter\n";
68 out << " Size: ";
69 this->ToStringHelper(out, this->m_Size);
70 out << std::endl;
71 out << " Index: ";
72 this->ToStringHelper(out, this->m_Index);
73 out << std::endl;
74 out << " DirectionCollapseToStrategy: ";
75 this->ToStringHelper(out, this->m_DirectionCollapseToStrategy);
76 out << std::endl;
77
78 out << ProcessObject::ToString();
79 return out.str();
80}
81
82//
83// Execute

Callers

nothing calls this directly

Calls 1

ToStringFunction · 0.85

Tested by

no test coverage detected