Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
738 views

cvReprojectImageTo3D -3d modelling from 2d images issue-

i need your help about this issue badly. i am trying to model a simple scene in 3d out of 2d images. i am using 2 images (left and right-the famous tsukuba scene) ...
2
votes
0answers
2k views

Emgu (OpenCV for C#) - building a disparity map using cvStereoRectify

I've been using the great Emgu C# wrapper for OpenCV to collect images from a home built stereo rig. Two webcams bolted down to a piece of wood, 35cm apart to hopefully let me produce depth maps in ...
2
votes
1answer
266 views

Creating 3D Model then determine dimensions

Are there any libraries that can take a few digital pictures of an object and create a 3d model of it. For instance, I'd ideally like to let a user upload n pictures of an object and feed the ...
1
vote
0answers
47 views

OpenCV Face detect in stereo cameras

Here is what I am trying to do. Detect a person's face in 2 calibrated USB cameras individually. Get the coordinates of the face center in each camera. Calculate the corresponding point coordinates ...
1
vote
0answers
84 views

How to create a disparity map?

Okay so I have implemented a stereo correspondence algorithm which takes a stereo image pair, matches a point on the left image with a point on the right image, and finds the disparity between the ...
1
vote
2answers
368 views

How to produce an accurate 3D reconstruction of an indoor surrounding using stereo vision?

I used cvStereoFindCorrespondenceGC() in openCV to produce a disparity map from the famous tsukaba image. But I notice that it lacks 3D features (eg the lamp is flat instead of slightly curve). How to ...
1
vote
3answers
3k views

How can I compute the dense disparity map from to stereo images?

How can I compute the dense disparity map from to stereo images ? My idea so far was to go over all the pixels from the first image, and scan the second image for matches. To compare the similarity ...
0
votes
2answers
19 views

disparity map from 2 consecutive frames of a SINGLE calibrated camera. Is it possible?

The stereo_match.cpp example converts L and R images into disparity and point cloud. I want to adapt this example for compute the disparity and point cloud from 2 consecutive frames of a single ...
0
votes
2answers
128 views

Definition of a Disparity Map

I've been asked to implement an edge-based disparity map but I fundamentally don't understand what a disparity map is. Googling doesn't seem to produce a straight-forward answer. Could someone ...
0
votes
2answers
84 views

Non-uniform shifting of pixels

From the given matrices A and B I need to compute a new matrix C. Matrix A represents image pixels and C is a horizontally shifted version of A. The tricky part: this shift is defined per pixel by the ...
0
votes
1answer
418 views

disparity map creation opencv

I have 2 image one is left the other is right image. I want to implement disparity mapping. There are some questions in my mind. Firstlty dispartiy image is 1 channel gray image but the left and ...