Questions tagged [image-stitching]

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

361 questions
2
votes
1 answer

how do I perform image stitching with a reference image as a guide?

image stitching with a reference image. I have multiple images of subject(bone), the images are of different sections of the subject as on a 3x3 matrix. I would like to stitch them together but the problem is they don't have any common feature, as…
2
votes
0 answers

Stitching a moving object which is partially visible in view of stationary camera

I am trying to stitch a moving car, which is not completely visible horizontally, ( although completely visible vertically ) from camera view port. Camera is stationary, 1-2 meters apart from the moving object ( similar to a gate setup ), taking…
2
votes
1 answer

Python OpenCV Stitcher Class documentation

Could you please give me some hint where can I find a detailed documentation for the Python Stitcher Class? I was able to find examples, and implemented them but I'd like to know more about this class and its capabilities.
Kristan
  • 387
  • 6
  • 19
2
votes
3 answers

Matlab: Image stitching and blending

Hey guys. I got two images from video frames. They have a certain portion of overlap. After warping one of them, I'm currently trying to blend them together. In other words, I would like to stitch them together. But I don't know how to accomplish…
view
  • 555
  • 2
  • 11
  • 16
2
votes
1 answer

Homography when camera translation (for stitching)

I have a camera which I take with it 2 captures. I want do make a reconstitution with the 2 images in one image. I only do a translation with the camera an take images of a plane TV screen. I heard homography only works when the camera does a…
2
votes
0 answers

Stitching 2 images with overlapping area using opencv

I want to stitch 2 images using opencv(i don't want to use stitcher class), so far i've done keypoint detection, description, matching and warping there are input images: left right myOutput stitcherClassOutput here is my code after finding good…
Boris Sliz
  • 21
  • 2
2
votes
1 answer

Stitching overlaying images from different cameras in Matlab

Two cameras takes two images of a wooden plank. The images have an overlap of the plank which I need to stitch together in a way that it looks natural and preferably seamless to the human eye for inspection purposes. The images are cropped to the…
2
votes
0 answers

Stitching of captured images to form Panorama

i am trying to find something related to photo stitching in order to rotate images in penormic view , but i am not able to find any sample code for this , i have got one CardBoard sdk of google , but in that SDk i have not found any sample of…
user2028
  • 163
  • 4
  • 15
  • 40
2
votes
2 answers

stitch images together in python

I am trying to stitch about 50 images(all in the same 287x287 size) together. Specifically, there should be 25 images on the top row and 25 images on the bottom row, and there also exists a small distance between each two images. I met two…
user7725630
2
votes
0 answers

OpenCV Python Stitch unordered images

I currently have built a stitching program that is able to stitch any number of images however they have to be of specific order which is a problem for my specific image sets (working with 1452 images). My goal is to create an unordered stitcher…
C.Radford
  • 882
  • 4
  • 13
  • 31
2
votes
0 answers

Stitch images regardless of orientation OpenCV Numpy

I have run into an issue with a stitching program I made. The way I am slicing the image makes it so the only way it works is if the first image if to the left and above the one it would be stitched to. def…
C.Radford
  • 882
  • 4
  • 13
  • 31
2
votes
1 answer

OpenCV (C++) stitcher not writing to OutputArray

I'm currently playing around with a 360° camera and want to use OpenCV's spherical warper for that. However, each time I try to run a simple program that makes use of the stitcher functionality, it fails to return a stitched image. I'm basically…
neobanshee
  • 31
  • 5
2
votes
1 answer

OpenCV Image Stitching with Image Resolutions greater than 1080 * 1080

I've been working with OpenCV to stitch two images together on a Raspberry Pi and on a Windows OS based PC. #include #include #include "opencv2/opencv.hpp" #include "opencv2/core/core.hpp" #include…
Starwolf-001
  • 182
  • 11
2
votes
0 answers

OpenCV stitcher fails to stitch undistorted images

I am trying to stitch a panorama using mobile phone camera with an attachable 170 degree wide angle lens. The resulting photo is distorted (fisheye). I understand that to stitch these photos using Stitcher::stitch(InputArrayOfArrays images,…
Kevin
  • 321
  • 1
  • 8
2
votes
1 answer

What is the fastest mosaic image blending algorithm?

I'm recently working on building panoramas from a large number of mosaic images where the luminance varies among virtually all of them. Therefore, I have to devise an algorithm to blend the images (can be assumed to be well aligned) in each panorama…