I am stitching together four pictures. Here is my code:
import cv2
stitcher = cv2.Stitcher.create()
img1 = cv2.imread("Stitching/Images/Newspapers/Newspaper1.jpg")
img2 = cv2.imread("Stitching/Images/Newspapers/Newspaper2.jpg")
img3 = cv2.imread("Stitching/Images/Newspapers/Newspaper3.jpg")
img4 = cv2.imread("Stitching/Images/Newspapers/Newspaper4.jpg")
result = stitcher.stitch((img1,img2,img3,img4))
cv2.imshow("camera",result[1])
cv2.waitKey(0)
--- My very first picture is not showing up. What would cause all three of my other pictures to stitch but not one of them? I am using Python and OpenCV Stitcher. Help!
This is the newspaper with the top cut off. It is blurry since I had to resize to fit on here.
Update: I can reproduce this issue with the newspaper sample images from the tutorial. Even with
cv2.Stitcher.create(mode=cv2.STITCHER_SCANS)
as suggested in the tutorial the first image is omitted. My currentopencv
version is opencv-contrib-python 4.5.5.64.It seems someone else has already reported this as a bug: https://github.com/opencv/opencv/issues/21010.
If I take four photos of a normal landscape the
stitcher
does a good job. I also tried it with a photo of a newspaper and cut it into four overlapping images (upper left, upper right, lower left, lower right, approx. 1700 x 2400 px each) and everything was stitched together.My code (which is essentially identical to yours):