From: victor-ludorum <33842504+victor-ludorum@users.noreply.github.com> Date: Sat, 30 Dec 2017 18:22:02 +0000 (+0530) Subject: Merge pull request #10469 from victor-ludorum:stichingbranch X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~222 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=914d9662d3cfa386fd3cd1e71274767d5c4fd452;p=platform%2Fupstream%2Fopencv.git Merge pull request #10469 from victor-ludorum:stichingbranch Updating stiching.cpp to resolve new line issue #10461 (#10469) --- diff --git a/samples/cpp/stitching.cpp b/samples/cpp/stitching.cpp index d54b095..153fe55 100644 --- a/samples/cpp/stitching.cpp +++ b/samples/cpp/stitching.cpp @@ -44,7 +44,7 @@ void printUsage(char** argv) "Images stitcher.\n\n" << "Usage :\n" << argv[0] <<" [Flags] img1 img2 [...imgN]\n\n" "Flags:\n" " --d3\n" - " internally creates three chunks of each image to increase stitching success" + " internally creates three chunks of each image to increase stitching success\n" " --try_use_gpu (yes|no)\n" " Try to use GPU. The default value is 'no'. All default values\n" " are for CPU mode.\n" @@ -54,7 +54,7 @@ void printUsage(char** argv) " for stitching materials under affine transformation, such as scans.\n" " --output \n" " The default is 'result.jpg'.\n\n" - "Example usage :\n" << argv[0] << " --d3 --try_use_gpu yes --mode scans img1.jpg img2.jpg"; + "Example usage :\n" << argv[0] << " --d3 --try_use_gpu yes --mode scans img1.jpg img2.jpg\n"; }