mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-19 02:16:34 +08:00
Just a tiny fix of two typos
- Fixed a typo in the help text - Fixed a typo in a comment line
This commit is contained in:
@@ -20,7 +20,7 @@ static void help() {
|
||||
<< " example_sfm_scene_reconstruction <path_to_file> <f> <cx> <cy>\n"
|
||||
<< " where: path_to_file is the file absolute path into your system which contains\n"
|
||||
<< " the list of images to use for reconstruction. \n"
|
||||
<< " f is the focal lenght in pixels. \n"
|
||||
<< " f is the focal length in pixels. \n"
|
||||
<< " cx is the image principal point x coordinates in pixels. \n"
|
||||
<< " cy is the image principal point y coordinates in pixels. \n"
|
||||
<< "------------------------------------------------------------------------------------\n\n"
|
||||
@@ -60,7 +60,7 @@ int main(int argc, char* argv[])
|
||||
getdir( argv[1], images_paths );
|
||||
|
||||
|
||||
// Build instrinsics
|
||||
// Build intrinsics
|
||||
|
||||
float f = atof(argv[2]),
|
||||
cx = atof(argv[3]), cy = atof(argv[4]);
|
||||
|
Reference in New Issue
Block a user