-
-
Notifications
You must be signed in to change notification settings - Fork 56.5k
cpp-example-stitching newline missing when the command exits #10461
Copy link
Copy link
Closed
Description
After running a command, the shell prompt is at the same line than the ended command, instead of being on a new line. Example:
linux@linux:~/opencv$ ./build/bin/cpp-example-stitching
Images stitcher.
Usage :
/home/linux/opencv/build/bin/cpp-example-stitching [Flags] img1 img2 [...imgN]
Flags:
--d3
internally creates three chunks of each image to increase stitching success --try_use_gpu (yes|no)
Try to use GPU. The default value is 'no'. All default values
are for CPU mode.
--mode (panorama|scans)
Determines configuration of stitcher. The default is 'panorama',
mode suitable for creating photo panoramas. Option 'scans' is suitable
for stitching materials under affine transformation, such as scans.
--output <result_img>
The default is 'result.jpg'.
Example usage :
/home/linux/opencv/build/bin/cpp-example-stitching --d3 --try_use_gpu yes --mode scans img1.jpg img2.jpglinux@linux:~/opencv$
"linux@linux:~/opencv$" should be in a newline.
Reactions are currently unavailable