Skip to content

Commit 27bbdb6

Browse files
authored
Just a tiny fix of two typos
- Fixed a typo in the help text - Fixed a typo in a comment line
1 parent f03e415 commit 27bbdb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/sfm/samples/scene_reconstruction.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static void help() {
2020
<< " example_sfm_scene_reconstruction <path_to_file> <f> <cx> <cy>\n"
2121
<< " where: path_to_file is the file absolute path into your system which contains\n"
2222
<< " the list of images to use for reconstruction. \n"
23-
<< " f is the focal lenght in pixels. \n"
23+
<< " f is the focal length in pixels. \n"
2424
<< " cx is the image principal point x coordinates in pixels. \n"
2525
<< " cy is the image principal point y coordinates in pixels. \n"
2626
<< "------------------------------------------------------------------------------------\n\n"
@@ -60,7 +60,7 @@ int main(int argc, char* argv[])
6060
getdir( argv[1], images_paths );
6161

6262

63-
// Build instrinsics
63+
// Build intrinsics
6464

6565
float f = atof(argv[2]),
6666
cx = atof(argv[3]), cy = atof(argv[4]);
@@ -156,4 +156,4 @@ int main(int argc, char* argv[])
156156
window.spin();
157157

158158
return 0;
159-
}
159+
}

0 commit comments

Comments
 (0)