MCPcopy Create free account
hub / github.com/colmap/colmap / StringToUpper

Function StringToUpper

src/colmap/util/string.cc:281–283  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279}
280
281void StringToUpper(std::string* str) {
282 std::transform(str->begin(), str->end(), str->begin(), ::toupper);
283}
284
285bool StringContains(const std::string& str, const std::string& sub_str) {
286 return str.find(sub_str) != std::string::npos;

Callers 4

RunImageUndistorterFunction · 0.85
RunFeatureExtractorFunction · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected