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

Function StringToLower

src/colmap/util/string.cc:277–279  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

275}
276
277void StringToLower(std::string* str) {
278 std::transform(str->begin(), str->end(), str->begin(), ::tolower);
279}
280
281void StringToUpper(std::string* str) {
282 std::transform(str->begin(), str->end(), str->begin(), ::toupper);

Callers 15

RunModelAlignerFunction · 0.85
RunModelConverterFunction · 0.85
RunModelSplitterFunction · 0.85
RunDelaunayMesherFunction · 0.85
RunMeshTexturerFunction · 0.85
RunPatchMatchStereoImplFunction · 0.85
RunStereoFuserImplFunction · 0.85
RunDatabaseCleanerFunction · 0.85
RunProjectGeneratorFunction · 0.85
WorkspaceMethod · 0.85
ReadWorkspaceMethod · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected