Questions tagged [disparity-mapping]

192 questions
0
votes
0 answers

Stereo images rectification and disparity: which algorithms?

I'm trying to figure out what are currently the two most efficent algorithms that permit, starting from a L/R pair of stereo images created using a traditional camera (so affected by some epipolar lines misalignment), to produce a pair of adjusted…
TheUnexpected
  • 2,871
  • 5
  • 25
  • 58
0
votes
0 answers

Opencv disparity map from webcams - code does not work

Here is code I have written to get feed from 2 webcams and get a running disparity map. code::blocks returns -1 for this, my webcams lights flash, but nothing happens. I need it to loop until I press 'q'. // Live depthmap #include "cv.h" #include…
0
votes
2 answers

missing region in disparity map

i am currently working on stereo processing using opencv2.3 and a Pointgrey Bumblebee2 stereocamera as an input device. Acquiring images is done via the libdc1394. My code for rectification and stereo processing is the following: void…
m47h
  • 1,441
  • 1
  • 15
  • 24
0
votes
1 answer

When building an OpenCV project on iOS, why is CvStereoBMState undeclared?

I am working on an iOS project using OpenCV. I am trying to create disparity map of an image. While implementing this, Xcode is showing CvStereoBMState as being an undeclared identifier. How can I fix this?
Dani
  • 73
  • 1
  • 11
0
votes
2 answers

Issue with cvReprojectImageTo3D and CV_32FC3

I need your help. I have implemented stereo calibration, rectification using my stereo pair. I have got a disparity image which is quite reasonable. The problem that I face is with cvReprojectImageTo3D.I have used stereobM. And rectified in a…
-1
votes
0 answers

Stereo depth estimation with two different low quality cameras

I am working on stereo vision depth estimation with two cameras. The cameras have low quality and the images are pretty blurry and noisy. Moreover, the sensors are different so the intensity and noise in the images are different. I did calibration…
-1
votes
1 answer

What is the best way(algorithim or function) of generating a decent disparity map in c++ or python for implementation on raspberry pi?

I am trying to do some distance calculations using stereo videos in realtime but there is no proper documentation available for disparity mapping for opencv3 and many of the old commands from opencv2 are not working on the latest versions. Is there…
BigZee
  • 336
  • 3
  • 17
-1
votes
1 answer

not getting expected result for disparity map of two images

I recently started working on opencv and facing problem in getting desired result. I don't know where I am mistaking. I have two uncalibrated images and have to calculate disparity map for them without any other support data(like camera matrix). int…
rajatV
  • 89
  • 1
  • 2
  • 10
-1
votes
3 answers

How to take stereo images using single camera?

I want to find the depth map for stereo images.At present i am working on the internet image,I want to take stereo images so that i can work on it by my own.How to take best stereo images without much noise.I have single camera.IS it necessary to do…
-1
votes
1 answer

Opencv cvFindStereoCorrespondenceGC(), disparityLeft / disparityRight

I'm using the graph-cuts cvFindStereoCorrespondenceGC() function: void cvFindStereoCorrespondenceGC(const CvArr *left, const CvArr *right, CvArr *disparityLeft, CvArr *disparityRight, CvStereoGCState *state, int useDisparityGuess = 0). My question…
David
  • 11
  • 1
  • 4
-2
votes
3 answers

Faster iteration on for loop with 2d arrays

I have a problem with optimization to compute errors for disparity map estimation. To compute errors I create a class with called methods for each error. I need to iterate for every pixel to get an error. This arrays are big cause I'm iterating in…
Sagocz
  • 5
  • 3
-3
votes
1 answer

Efficient Stereo matching Algoirithm in Windows

I want to compute the disparity map in Windows platform. I have used several codes on the internet, but I can't compute precision disparity map. I have used Opencv SGBM algorithm, but the disparity map was very noisy. could any one introduce an…
omrn
  • 1
  • 2
1 2 3
12
13