Questions tagged [image-stitching]

References the process of combining, or stitching together, one or more images.

361 questions
3
votes
2 answers

Panorama stitching for text

I'm looking for a good panorama stitching library for text. I tried OpenCV and OpenPano. They both work good on regular photos, but fail on text. For example I need to stitch the following 3 images: The images have about 45% overlapping between…
Alaa M.
  • 4,961
  • 10
  • 54
  • 95
3
votes
1 answer

OpenCV, Python: Eliminating eventual narrowing when stitching images

Thanks in large part to some great answers on stackoverflow (here, here, and here) I've been having some pretty good success in aligning images. There is one issue, though, as you can see below. As I stitch many images together, they get smaller and…
Victor Odouard
  • 1,345
  • 3
  • 15
  • 28
3
votes
0 answers

OpenCV - How to map between corresponding points of stitched images

I'm using OpenCV 3.2 and I have a Stitcher set up to stitch two images. The stitching works great. But once it is complete I want to be able to determine the mapping from a point in image A to the corresponding point in image B. I don't care how…
Wyck
  • 10,311
  • 6
  • 39
  • 60
3
votes
1 answer

OpenCv 3d Stitching Panorama

I have 7 images from gopro (5 cameras in rig and one for top and one for bottom, They all are gopro camera). I want to stitch all these images together to create a 3d panorama. I have been able to stitch 5 images in Rig by using opencv…
Ahmad.Masood
  • 1,289
  • 3
  • 21
  • 40
3
votes
0 answers

Mosaicking of touchless fingerprint images by finding the stitching line in matlab?

I am trying to increase the effective fingerprint region by trying to stitch two fingerprint images (left and center) taken by two different cameras. Images have been attached below. I tried the standard process of image mosaicking and it gives a…
3
votes
1 answer

Opencv stitching multiple images

I have been working on stitching multiple images in opencv in order to create a mosaic. I followed this link on opencv: Stitch multiple images using OpenCV (Python) Here's the code that I have got so far : // imgstch.cpp : // imgstch.cpp…
3
votes
1 answer

Opencv Image Stitching or Panorama

I am doing image stitching in OpenCV (A panorama) but I have one problem. I can't use the class Stitching from OpenCV so I must create it with only feature points and homographies. OrbFeatureDetector detector( minHessian ); std::vector
Elseine
  • 741
  • 2
  • 11
  • 23
3
votes
2 answers

Stitching 2 images (OpenCV)

I'm trying to stitch two images together, using the OpenCV Java API. However, I get the wrong output and I cannot work out the problem. I use the following steps: 1. detect features 2. extract features 3. match features. 4. find homography 5. find…
user3019612
  • 259
  • 2
  • 7
  • 15
3
votes
0 answers

OpenCV stitching with georeferencing

Is it possible to create stitched image without loosing image position and geo-referencing using OpenCV? For example I have 2 images taken from the plane and I have 2 polygons that describes where on the ground they are located. I am using OpenCV…
Serhiy Zhdynyak
  • 103
  • 1
  • 8
3
votes
0 answers

OpenCV/EmguCV big image stitching

I am quite new in image stitching techniques and algorithms. What I need is to stitch several images (from 2 to 20). Image size is around 4-5 MB and resolution is 4000x3000. Since I have .NET background I tried EmguCV stitching sample application…
Serhiy Zhdynyak
  • 103
  • 1
  • 8
3
votes
2 answers

Is it possible to do panorama Image Stitching in Android from Java?

I am using openCV4Android and I know there are lots of questions related with this topic. Most of them (the ones with answer), suggest a solution with C++ and add it to the project in the folder jni + Android.mk, etc. Can I do something to avoid C++…
serfe
  • 285
  • 5
  • 13
3
votes
1 answer

Stitcher class OpenCV

I have two Images with a Overlapping area of about 25% - but the Stitching fails. How can I handle this problem? I tried using orb and surf, as well as I changing the Threshold. Are there any other options I should consider? Mat pano; Stitcher…
Malin
  • 231
  • 3
  • 8
3
votes
1 answer

Image stitching using JavaCV: compilation error

I have tried this code and it is gives error with the stitcher. whether I have use import static com.googlecode.javacv.cpp.opencv_stitching.Stitcher; it is give the same error with the stitcher. If you can please can I have a solution for this…
3
votes
1 answer

Techniques for stitching aerial shots in opencv (or other)

I'm trying to use the openCV stitcher class to put together aerial imagery. The problem I have though is that the Stitcher class is setup for a rotating camera and I now have a translating and rotating camera. Is there a way to deal with a rotating…
3
votes
1 answer

Multiple Image stitching - Adding a third image

I am trying to stitch a third image after stitching two images together but it doesn't seem to work. To elaborate, I successfully stitched two images together using the code given in the opencv documentation…
hriddle
  • 789
  • 1
  • 9
  • 11