380 questions
0
votes
0
answers
87
views
Brightness differences in stitching
I am facing a specific issue during image stitching. The stitching method provided by OpenCV doesn’t work properly in my case, likely due to insufficient overlap between the images.
To address this ...
5
votes
1
answer
123
views
Stitching Images with Two Different Camera Positions
It may not be possible to do what I want, but I thought I would throw the question out there just in case.
I am attempting to stitch the following two images together that are taken from two different ...
0
votes
1
answer
226
views
Panorama stitching using OpenCV in Python fails or creates artifacts
Given 18 quadratic cubemaps (aspect ratio 1:1, resolution 1000x1000) with a FOV of 90°, I'm trying to convert them into an equirectangular panorama (aspect ratio 2:1, resolution 4000x2000). The images ...
0
votes
1
answer
144
views
Repeating a pattern sample using ORB feature matching with Open CV
I am trying to take a wallpaper sample with repeating features and generalize the pattern on a larger canvas, by using ORB or SIFT feature matching to basically map the sample onto the edges of itself ...
1
vote
0
answers
118
views
How can I obtain a 360 degree image from 3 non overlapping 120 degree fov images?
I am trying to stitch or project three images from three 120 degree FoV cameras that have been aligned to perfectly cover a 360 degree FoV. They have no overlap so the common stitching techniques ...
1
vote
1
answer
215
views
Slight Misalignment Issue on Stitching Images Together in Grid-Like Manner
Slight Misalignment Issue on Stitching Images Together in Grid-Like Manner
I am trying to create high res composite images of rugs, with all parts in focus. For this the best approach I figured out ...
0
votes
0
answers
79
views
Use OpenCV to stitch 2d histograms - Merge cv2.detail.MatchesInfo
I am attempting to stitch multiple 2d histograms (2d data arrays) together for which the horizontal and vertical axes of the histograms are spatial coordinates, but the origin for the different ...
2
votes
0
answers
220
views
Image Stitching opencv
I'm trying to stitch two images together using OpenCV's Stitcher class, but despite getting good matches between the two images, the stitching process fails. I've checked my code and the matches seem ...
0
votes
0
answers
119
views
How do I stitch two screenshots without any overlap?
I am trying to take screenshots of a pane in a windows app without any overlap between scrolls using Python.
This is the code I have so far. When I run this, it works but there is overlap on the ...
1
vote
0
answers
227
views
Image stitching with opencv-python
So I've been trying to stitch some images together to create one big panorama but the Stitcher from OpenCV doesn't want to do so.
There's enough overlap on the images so the Stitcher should be able to ...
1
vote
0
answers
47
views
Combining Images Taken from Fixed Distance with Different Top and Bottom Distances
Question:
I have six thermal images taken at an angle, and I'm trying to stitch them into one seamless image without any overlapping areas. The images are named sequentially from 11.jpg to 16.jpg. The ...
0
votes
1
answer
316
views
Error in FIJI: File --> Import --> Image sequence --> virtual stack: Image width and height are <= 0
I am attempting to import an image sequence of 70 multichannel images (in .tif format) in order to use the grid collection/stitching function to produce one large image. However, when I import the ...
1
vote
1
answer
169
views
How to understand opencv's RotationWarper
Recently, I am doing image stitching, and I found stitching_detailed.py breaks up the steps of opencv's stitching algorithm, I read this code, have some questions about the PyRotationWarper:
What is ...
0
votes
0
answers
76
views
Enable_Precise_Upscale Function in OpenCV's SIFT
I am currently going through the OpenCV documentation for SIFT, and arrived on this function in the create portion of SIFT.
enable_precise_upscale: Whether to enable precise upscaling in the scale ...
1
vote
0
answers
55
views
Gain compensation values making the panorama image bad
I have implemented the Gain Compensation algorithm as mentioned in the paper Automatic Panoramic Image Stitching using Invariant Features. The derivation looks fine, here is the attached one for ...