Skip to content

Commit

Permalink
Merge pull request #1825 from luzpaz/typos-source
Browse files Browse the repository at this point in the history
Fix source typo in software/pipeline/main_lightingCalibration.cpp
  • Loading branch information
servantftechnicolor authored Feb 14, 2025
2 parents cd5c4ac + b07f79c commit 1334dbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/software/pipeline/main_lightingCalibration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -62,7 +62,7 @@ int aliceVision_main(int argc, char** argv)
"Path to the SfMData input.")
("inputDetection, j", po::value<std::string>(&inputDetection)->required(),
"Path to the folder containing the JSON file that describes spheres' positions and radius")
("outputFile, o", po::value<std::string>(&ouputJSON)->required(),
("outputFile, o", po::value<std::string>(&outputJSON)->required(),
"Path to JSON output file.");

po::options_description optionalParams("Optional parameters");
Expand Down Expand Up @@ -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()));
Expand Down

0 comments on commit 1334dbd

Please sign in to comment.