MCPcopy Create free account
hub / github.com/MITK/MITK / AddColumn

Method AddColumn

Modules/Classification/CLUtilities/src/mitkCLResultWriter.cpp:65–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65void mitk::cl::FeatureResultWriter::AddColumn(double value) {
66 std::ostringstream ss;
67 if (m_UseSpecialDecimalPoint)
68 {
69 ss.imbue(std::locale(std::cout.getloc(), new punct_facet<char>(m_DecimalPoint)));
70 }
71 ss << value;
72 AddColumn(ss.str());
73}
74
75void mitk::cl::FeatureResultWriter::AddSubjectInformation(std::string value) {
76 if ((m_Mode == 0) || (m_Mode == 1))

Callers 3

DoCalculateFeaturesMethod · 0.80
DoCalculateFeaturesMethod · 0.80
mainFunction · 0.80

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected