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

Function StringTrim

src/colmap/util/string.cc:272–275  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

270}
271
272void StringTrim(std::string* str) {
273 StringLeftTrim(str);
274 StringRightTrim(str);
275}
276
277void StringToLower(std::string* str) {
278 std::transform(str->begin(), str->end(), str->begin(), ::tolower);

Callers 15

ReadRigsTextFunction · 0.85
ReadCamerasTextFunction · 0.85
ReadFramesTextFunction · 0.85
ReadImagesTextFunction · 0.85
ReadPoints3DTextFunction · 0.85
ReadImagePairsTextFunction · 0.85
RunMethod · 0.85
ReadProblemsMethod · 0.85
ReadPatchMatchConfigFunction · 0.85
CSVToVectorFunction · 0.85

Calls 2

StringLeftTrimFunction · 0.85
StringRightTrimFunction · 0.85

Tested by

no test coverage detected