Skip to content

Commit 1334dbd

Browse files
Merge pull request #1825 from luzpaz/typos-source
Fix source typo in software/pipeline/main_lightingCalibration.cpp
2 parents cd5c4ac + b07f79c commit 1334dbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/software/pipeline/main_lightingCalibration.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ int aliceVision_main(int argc, char** argv)
4949

5050
std::string inputPath;
5151
std::string inputDetection;
52-
std::string ouputJSON;
52+
std::string outputJSON;
5353
std::string method;
5454
bool doDebug;
5555
bool saveAsModel;
@@ -62,7 +62,7 @@ int aliceVision_main(int argc, char** argv)
6262
"Path to the SfMData input.")
6363
("inputDetection, j", po::value<std::string>(&inputDetection)->required(),
6464
"Path to the folder containing the JSON file that describes spheres' positions and radius")
65-
("outputFile, o", po::value<std::string>(&ouputJSON)->required(),
65+
("outputFile, o", po::value<std::string>(&outputJSON)->required(),
6666
"Path to JSON output file.");
6767

6868
po::options_description optionalParams("Optional parameters");
@@ -105,7 +105,7 @@ int aliceVision_main(int argc, char** argv)
105105
return EXIT_FAILURE;
106106
}
107107

108-
lightingEstimation::lightCalibration(sfmData, inputDetection, ouputJSON, method, doDebug, saveAsModel, ellipticEstimation);
108+
lightingEstimation::lightCalibration(sfmData, inputDetection, outputJSON, method, doDebug, saveAsModel, ellipticEstimation);
109109
}
110110

111111
ALICEVISION_LOG_INFO("Task done in (s): " + std::to_string(timer.elapsed()));

0 commit comments

Comments
 (0)