MCPcopy Create free account
hub / github.com/CRVI/OpenCLIPP / SelectName

Function SelectName

C++/programs/Thresholding.cpp:85–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85std::string SelectName(const char * name, Thresholding::ECompareOperation Op)
86{
87 std::string str = name;
88
89 switch (Op)
90 {
91 case Thresholding::LT:
92 str += "_LT";
93 break;
94 case Thresholding::LQ:
95 str += "_LQ";
96 break;
97 case Thresholding::EQ:
98 str += "_EQ";
99 break;
100 case Thresholding::GQ:
101 str += "_GQ";
102 break;
103 case Thresholding::GT:
104 str += "_GT";
105 break;
106 }
107
108 return str;
109}
110
111}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected