From b07f79cb811951246cf953b2e4298ef453cdeb04 Mon Sep 17 00:00:00 2001 From: Luz Paz Date: Mon, 10 Feb 2025 11:37:48 -0500 Subject: [PATCH] Fix source typo in software/pipeline/main_lightingCalibration.cpp Fix typos ouputJSON -> outputJSON --- src/software/pipeline/main_lightingCalibration.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/software/pipeline/main_lightingCalibration.cpp b/src/software/pipeline/main_lightingCalibration.cpp index 0a5d091fd0..a3275d3a9f 100644 --- a/src/software/pipeline/main_lightingCalibration.cpp +++ b/src/software/pipeline/main_lightingCalibration.cpp @@ -49,7 +49,7 @@ int aliceVision_main(int argc, char** argv) std::string inputPath; std::string inputDetection; - std::string ouputJSON; + std::string outputJSON; std::string method; bool doDebug; bool saveAsModel; @@ -62,7 +62,7 @@ int aliceVision_main(int argc, char** argv) "Path to the SfMData input.") ("inputDetection, j", po::value(&inputDetection)->required(), "Path to the folder containing the JSON file that describes spheres' positions and radius") - ("outputFile, o", po::value(&ouputJSON)->required(), + ("outputFile, o", po::value(&outputJSON)->required(), "Path to JSON output file."); po::options_description optionalParams("Optional parameters"); @@ -105,7 +105,7 @@ int aliceVision_main(int argc, char** argv) return EXIT_FAILURE; } - lightingEstimation::lightCalibration(sfmData, inputDetection, ouputJSON, method, doDebug, saveAsModel, ellipticEstimation); + lightingEstimation::lightCalibration(sfmData, inputDetection, outputJSON, method, doDebug, saveAsModel, ellipticEstimation); } ALICEVISION_LOG_INFO("Task done in (s): " + std::to_string(timer.elapsed()));