Questions tagged [image-stitching]

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

361 questions
0
votes
0 answers

OpenCV: Stitch images with few features

I'm writing software for a solar panel inspection system and need to stitch camera images taken in a electroluminescence machine together. These images have only very few features and low contrast (as shown below) and the OpenCV image stitcher does…
ftramnitzke
  • 151
  • 9
0
votes
1 answer

OpenCV C++ create reusable set of keypoints and descriptors for stitching multiple images

I have created a program that can stitch multiple images together and am now looking to improve the efficiency of it. Depending on the size of the stitched image, eventually it is to large and contains too many keypoints that the machine runs out of…
C.Radford
  • 882
  • 4
  • 13
  • 31
0
votes
0 answers

Image Stitching of images without overlapping region using opencv python

I want to stitch images which are not having any overlapping region.I am using OpenCV with Python. They are not having common key points and features.So, I can not use features for Image stitching.I am attaching the images which I need to…
0
votes
1 answer

OpenCV Center Homography

I am trying to create a stitching algorithm. I have been successful in creating it with a few tweaks needed. The photos below are examples of my stitching program so far. I am able to provide it with an unordered list of image (so long as image is…
C.Radford
  • 882
  • 4
  • 13
  • 31
0
votes
1 answer

misalignment error in pixels

I have two cameras I have calibrated the cameras considering there position at the same point. But actually the positions of the cameras is slightly different than considered during calibration. This caused a parallax error. Now when I capture a…
0
votes
1 answer

Merge large images with VB.Net

I am hoping someone can help me with merging several large images (PNG) into one. I have up to 30 images that are 20000x2000 and would like to merge them. The output is an image that can be loaded into GIS software. The issue I am having is I am out…
Ando
  • 121
  • 7
0
votes
0 answers

OpenCV Stitching in real-time with Overlapping Stationary Cameras extremely slow

I'm trying to use the OpenCV Stitcher class to stitch frames from two cameras. I would just like to do this in the most simple way to start with and then get into the details of the Stitcher class. The code is really simple and not so many line of…
theAlse
  • 5,577
  • 11
  • 68
  • 110
0
votes
1 answer

Finding exact image area matches

I am trying to stitch together a series of images created from multiple screen captures of a very large image. The user moved vertically and horizontally at maximum resolution over the source image and took screenshots (including window borders,…
Michael Sandler
  • 1,290
  • 3
  • 17
  • 30
0
votes
0 answers

Stitching in a loop

WHat I am trying to do is to take 2 2 images from then stitch them together in a loop. This is the code i am trying to use: for i in range(1,3): imageA = cv2.imread('frame%d.jpg'%i);i=i+1;print imageA.shape; imageB =…
Mobi Zaman
  • 605
  • 1
  • 6
  • 19
0
votes
0 answers

Stitching Images in Bulk

So I am doing this project where I am digitizing a bunch of old photo album pages. I am doing it as whole pages. The problem is that some of the pages (over 100 of them) were too large to fit the scanner and had to be scanned in parts. I have been…
0
votes
1 answer

Attaching multiple image panorama to form complete panorama

I am using opencv stitcher code. In stitcher.cpp, there is leavebiggestcomponent function, in which largest set having images belonging to a panorama is obtained and all other images are rejected. I have changed the code and able to obtain fewer…
0
votes
1 answer

The best language for photo stitching/VR application

I'm new to the forum so I am very sorry if I offend any of you with my novice! I'm 2 months into learning code and I would like to dabble in photo stitching. Similar to iPhone's pano feature or Google Street View. My easy question is what language…
0
votes
0 answers

JavaCV Stitching in Android not working

I´m developing an Android app where I would like to stitch some images. I´m working with Eclipse and an older version of JavaCV, googlecode (newer version is not working). Now my problem: I´m trying to stitch two IplImages, but I only get a black…
anita
  • 1
0
votes
1 answer

How to use the bundle adjustment to optimize homography matrix

I did mulitiple cameras image stiching project rencently,I estimated the parameters of the cameras first(use autostitch),and calculated the homography matrixs through those parameters,but something wrong and the result is as follows. enter image…
Look
  • 1
  • 1
0
votes
1 answer

How to detect the start and end of pieces in a stitched video?

I am trying to figure out how to process a special video for an application that I trying to build. After days of research, I cannot figure out how to achieve what I am trying to build: The user passes in a video that is X minutes long. The video…
user1320885
  • 135
  • 1
  • 15