Skip to content

Commit 914d966

Browse files
victor-ludorumalalek
authored andcommittedDec 30, 2017
Merge pull request opencv#10469 from victor-ludorum:stichingbranch
Updating stiching.cpp to resolve new line issue opencv#10461 (opencv#10469)
1 parent a50a355 commit 914d966

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎samples/cpp/stitching.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ void printUsage(char** argv)
4444
"Images stitcher.\n\n" << "Usage :\n" << argv[0] <<" [Flags] img1 img2 [...imgN]\n\n"
4545
"Flags:\n"
4646
" --d3\n"
47-
" internally creates three chunks of each image to increase stitching success"
47+
" internally creates three chunks of each image to increase stitching success\n"
4848
" --try_use_gpu (yes|no)\n"
4949
" Try to use GPU. The default value is 'no'. All default values\n"
5050
" are for CPU mode.\n"
@@ -54,7 +54,7 @@ void printUsage(char** argv)
5454
" for stitching materials under affine transformation, such as scans.\n"
5555
" --output <result_img>\n"
5656
" The default is 'result.jpg'.\n\n"
57-
"Example usage :\n" << argv[0] << " --d3 --try_use_gpu yes --mode scans img1.jpg img2.jpg";
57+
"Example usage :\n" << argv[0] << " --d3 --try_use_gpu yes --mode scans img1.jpg img2.jpg\n";
5858
}
5959

6060

0 commit comments

Comments
 (0)
Please sign in to comment.