Skip to content

Commit cd5c4ac

Browse files
Merge pull request #1826 from luzpaz/typos-src-software
Fix typos in src/software
2 parents 83dca43 + 4239e28 commit cd5c4ac

37 files changed

+49
-49
lines changed

src/software/convert/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## AliceVision
2-
## Convertion software
2+
## Conversion software
33

44
# Software PROPERTY FOLDER is 'Software/Convert'
55
set(FOLDER_SOFTWARE_CONVERT "Software/Convert")

src/software/convert/main_convertDistortion.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ bool convert(std::shared_ptr<camera::Undistortion> & undistortion, const camera:
101101
};
102102
break;
103103
default:
104-
ALICEVISION_LOG_ERROR("Unsupported camera model for convertion.");
104+
ALICEVISION_LOG_ERROR("Unsupported camera model for conversion.");
105105
return false;
106106
};
107107

@@ -222,7 +222,7 @@ int aliceVision_main(int argc, char** argv)
222222
// export the SfMData scene in the expected format
223223
if (!sfmDataIO::save(sfmData, outputSfMDataFilename, sfmDataIO::ESfMData::ALL))
224224
{
225-
ALICEVISION_LOG_ERROR("An error occured while trying to save '" << outputSfMDataFilename << "'");
225+
ALICEVISION_LOG_ERROR("An error occurred while trying to save '" << outputSfMDataFilename << "'");
226226
return EXIT_FAILURE;
227227
}
228228

src/software/convert/main_convertSfMFormat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ int aliceVision_main(int argc, char** argv)
185185
// export the SfMData scene in the expected format
186186
if (!sfmDataIO::save(sfmData, outputSfMDataFilename, sfmDataIO::ESfMData(flags)))
187187
{
188-
ALICEVISION_LOG_ERROR("An error occured while trying to save '" << outputSfMDataFilename << "'");
188+
ALICEVISION_LOG_ERROR("An error occurred while trying to save '" << outputSfMDataFilename << "'");
189189
return EXIT_FAILURE;
190190
}
191191

src/software/convert/main_importE57.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ int aliceVision_main(int argc, char** argv)
240240
{
241241
bool found = true;
242242

243-
// Check if the point is close to the sensor enough to be theorically close to a neighboor
243+
// Check if the point is close to the sensor enough to be theoretically close to a neighbor
244244
double length = (vertices[vIndex].coords - sensorPosition).norm();
245245
if (length < maxLength)
246246
{

src/software/convert/main_importKnownPoses.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ int aliceVision_main(int argc, char** argv)
494494
// export the SfMData scene in the expected format
495495
if (!sfmDataIO::save(sfmData, outputFilename, sfmDataIO::ESfMData::ALL))
496496
{
497-
ALICEVISION_LOG_ERROR("An error occured while trying to save '" << outputFilename << "'");
497+
ALICEVISION_LOG_ERROR("An error occurred while trying to save '" << outputFilename << "'");
498498
return EXIT_FAILURE;
499499
}
500500
return EXIT_SUCCESS;

src/software/export/main_exportAnimatedCamera.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ int aliceVision_main(int argc, char** argv)
179179
}
180180
system::Timer timer;
181181

182-
// Decide the views and instrinsics to export
182+
// Decide the views and intrinsics to export
183183
sfmData::SfMData sfmDataExport;
184184
for (auto& viewPair : sfmData.getViews())
185185
{

src/software/export/main_exportMVSTexturing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ int aliceVision_main(int argc, char** argv)
108108
}
109109

110110
const std::string sUndistMsg = bOneHaveDisto ? "undistorded" : "";
111-
const std::string sQuitMsg = std::string("Your SfMData file was succesfully converted!\n") + "Now you can copy your " + sUndistMsg +
111+
const std::string sQuitMsg = std::string("Your SfMData file was successfully converted!\n") + "Now you can copy your " + sUndistMsg +
112112
" images in the \"" + outDirectory + "\" folder and run MVS Texturing";
113113
std::cout << sQuitMsg << std::endl;
114114
return EXIT_SUCCESS;

src/software/pipeline/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## AliceVision
2-
## Pipeline softwares
2+
## Pipeline software
33

44
# Software PROPERTY FOLDER is 'Software/Pipeline'
55
set(FOLDER_SOFTWARE_PIPELINE "Software/Pipeline")
@@ -118,7 +118,7 @@ if(ALICEVISION_BUILD_SFM)
118118
Boost::json
119119
)
120120

121-
# Bootstraping SfM
121+
# Bootstrapping SfM
122122
alicevision_add_software(aliceVision_sfmBootstraping
123123
SOURCE main_sfmBootstraping.cpp
124124
FOLDER ${FOLDER_SOFTWARE_PIPELINE}

src/software/pipeline/main_cameraInit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ int aliceVision_main(int argc, char** argv)
362362
// number of views with LCP data used to add chromatic aberration params in metadata
363363
std::size_t lcpChromaticViewCount = 0;
364364

365-
// load known informations
365+
// load known information
366366
if (imageFolder.empty())
367367
{
368368
// fill SfMData from the JSON file

src/software/pipeline/main_depthMapEstimation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ int aliceVision_main(int argc, char* argv[])
247247
// print GPU Information
248248
ALICEVISION_LOG_INFO(gpu::gpuInformationCUDA());
249249

250-
// check if the gpu suppport CUDA compute capability 2.0
250+
// check if the gpu support CUDA compute capability 2.0
251251
if (!gpu::gpuSupportCUDA(2, 0))
252252
{
253253
ALICEVISION_LOG_ERROR("This program needs a CUDA-Enabled GPU (with at least compute capability 2.0).");

0 commit comments

Comments
 (0)