From ddc01bf8d38bbb8e60c66fb8996accce4fbe2084 Mon Sep 17 00:00:00 2001 From: uvos Date: Thu, 1 Jul 2021 14:03:49 +0200 Subject: [PATCH] fix remap map output file name --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 4b6af77..b183774 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -189,7 +189,7 @@ int perfromOperation(int operation, char** fileNames, const Config& config) RemapMap map; map.outputCellSize = 50; createRemapMap(inImages[0], map, points, config.verbose); - saveRemapMap(map, fileNames[0]); + saveRemapMap(map, std::string(fileNames[0]) + ".mat"); } else if(operation == APPLY_MAP) {