Questions tagged [image-stitching]

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

361 questions
0
votes
1 answer

Point cloud fusing/stitching

the objective of my project is to view a shoe in 3D 360 degrees using point cloud. So I took four pictures of the shoe, 0 90 180 270 (color images and depth maps). I put all of them in 3D space and is now able to turn sight of view with mouse. But…
SodaGuns
  • 33
  • 1
  • 6
0
votes
1 answer

Stitching large images together - Python.exe has stopped working

I am using a python script to stitch large images (10000 by 10000 pixels) together in a row. I can stitch the first six out of eight images together one at a time absolutely fine. However when I stitch more images beyond this point, I get…
Sam
  • 1,052
  • 4
  • 13
  • 33
0
votes
1 answer

image stitching to generate a Panorama with opencv

Now, i'm doing the experiment with opencv to stitch several images into a panorame, but These pictures are taken at different angles. now i want to do is to project all the images onto a cylindrical surface, then using the SIFT to match the features…
frostcake
  • 95
  • 1
  • 2
  • 7
0
votes
0 answers

Emgu CV stitching two images together of different sizes

I have two images I want to stitch together. The images are two different sizes (one is the main image and the other is a small legend). I'm currently doing: [STAThread] static void Main() { Application.EnableVisualStyles(); …
0
votes
1 answer

Stitch images together from html

This website has a large image combrised of 132 images, I want to find a way to stitch them together into a single image. I know some python if anyone has a clue where to…
user2113095
  • 1,027
  • 1
  • 11
  • 16
0
votes
1 answer

Automatic Image Stitching from video with opencv

Hy, i have error when i stitch frame from video, here's my code #include #include #include "opencv2/core/core.hpp" #include "opencv2/features2d/features2d.hpp" #include "opencv2/highgui/highgui.hpp" #include…
Roy
  • 398
  • 1
  • 6
  • 20
0
votes
1 answer

stitching manually with opencv

Hi I am trying to stitch some images without using the stitch class provided by opencv. But, the output is quit unexpected. I will explain it with the input and output image. input1 input2 expected output real output I think something is wrong…
MMH
  • 1,676
  • 5
  • 26
  • 43
0
votes
2 answers

Image stitching Python

I have to stitch two or more images together using python and openCV. I found this code for finding keypoints and matches, but I don't know how to continue. Help me please! import numpy as np import cv2 MIN_MATCH_COUNT = 10 img1 =…
p0lly11
  • 9
  • 1
  • 1
  • 3
0
votes
2 answers

ExceptionInInitializerError in Stitcher with JavaCV for Android

I am using this code for image stitching with JavaCV on Android: public void ImageStitching() { Stitcher stitcher = Stitcher.createDefault(false); MatVector images = new MatVector(2); images.put(0,cvLoadImage("sample1.png")); …
serfe
  • 285
  • 5
  • 13
0
votes
0 answers

panoramic stitching of 3 images using opencv and C++

I am using open CV and C++ to stitch 3 images together so that it forms a panorama. So what I am doing is.. use SURF Detector then Surf Descriptor Extractor etc to stitch 2 images. I then save the result of these 2images in the folder where my…
yumm
  • 63
  • 1
  • 1
  • 9
0
votes
2 answers

Panorama of cylinder

I want to create 2D panorama of lateral surface of a metallic(painted/otherwise) cylindrical object which can have defects such as scratch or a dent. I captured a video of 300 frames with appropriate ROI of the same. Now I am trying to stitch two…
0
votes
0 answers

Image Stitching using EMGU CV

I would like to do image stitching to produce a panoramic view image at one position roughly 360 degrees. For now my coding is like this... this is the capture while stitching button coding int n = 1; String fileName; …
0
votes
2 answers

How can I know the perspective transform matrix after findHomography

I'm new to OpenCV, and I'm doing something about image stitching. In the following code I want to know what the perspective transform matrix is and display the matrix, however I am getting the following errors. //-- Find the Homography cv::Mat H =…
user2567753
  • 39
  • 1
  • 5
0
votes
1 answer

Problems with stitching module opencv

I have been trying to use Stitching module of OpenCV for stitching images and for that purpose I started with an image and split it up with some overlap portion in both the images. The stitching worked and I got the output. But when I started…
NoOne
  • 313
  • 1
  • 4
  • 11
0
votes
1 answer

Image stitching: NullPointerException

I have run this code. It seems to be that result.png is not generated as a result: public class ImageStitching { public static void main(String[] args){ MatVector images = new MatVector(2); …