@@ -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