Questions tagged [stereo-3d]

This tag should only be used for issues directly related to binocular graphical rendering. If you are not displaying different graphical images to the left and right eyes, do not use this tag.

This tag should only be used for issues directly related to binocular graphical rendering. If you are not displaying different graphical images to the left and right eyes, do not use this tag.

Stereo 3D refers to a class of techniques for displaying two different images to a viewer's left and right eyes.

For other types of solid model rendering, use , or a tag specific to your platform.

506 questions
6
votes
1 answer

How to control stereo-frames separately with C#? (NVIDIA 3D shutter glasses)

I’m trying to make a very simple application which would display different images on each eye. I have Asus VG236H monitor and NVIDIA 3D Vision kit, the stereo 3D shutter glasses. The I’m using C#, .NET Framework 2.0, DirectX 9 (Managed Direct X) and…
Andows
  • 63
  • 1
  • 3
6
votes
1 answer

Merging Depth Maps for multi view stereo?

Is there a simple to implement way of merging depth maps? I take pictures of a statue from 3 different positions .Then each stereo pair produces a disparity map.I re-project it to depth using triangulation .Finally I get 3 set of 3d points.How can I…
Manish
  • 1,729
  • 5
  • 32
  • 47
6
votes
0 answers

Absolute depth from iPhone X back camera using disparity from AVDepthData?

I'm trying to estimate the absolute depth (in meters) from an AVDepthData object based on this equation: depth = baseline x focal_length / (disparity + d_offset). I have all the parameters from cameraCalibrationData, but does this still apply to an…
Wes W.
  • 93
  • 5
6
votes
1 answer

Problem with stereo rectification using OpenCV and Python

I am working on a stereo camera rig with 4 discrete cameras (of the same type) but at the moment only one pair (cam1 and cam2) are necessary. The aim is to calibrate the stereo pair and get 3D information about the scene. I am using Python 3.6 with…
Guido
  • 71
  • 1
  • 5
6
votes
1 answer

Point Cloud from KITTI stereo images

I try to create a Point Cloud based on the images from the KITTI stereo images dataset so then later I could estimate 3D position of some objects. Original images looks like this. What I have so far: generated disparity with…
6
votes
3 answers

Rotation and Translation from Essential Matrix incorrect

I currently have a stereo camera setup. I have calibrated both cameras and have the intrinsic matrix for both cameras K1 and K2. K1 = [2297.311, 0, 319.498; 0, 2297.313, 239.499; 0, 0, 1]; K2 =…
user1431515
  • 185
  • 1
  • 10
6
votes
1 answer

Stereo Disparity map generation

I am working on KITTI data set i am taking 2 images and finding the disparity to get 3D point cloud .The problem which i am facing is that i am not able to get a good disparity map.Most of the disparity value is less than 0.1 .The disparity values…
6
votes
1 answer

Pose from Fundamental matrix and vice versa

I have computed the Fundamental Matrix between two cameras using opencv's findFundamentalMat. Then I plot the epipolar lines in the image. And I get something like: Now, I tried to get the pose from that fundamental matrix, computing first the…
Josep Bosch
  • 848
  • 1
  • 12
  • 29
6
votes
1 answer

OpenCV Stereo rectification from manually created matrices

I am currently working on a 3d reconstruction of X-Ray images, and therefore I need to stereo-rectify images of two views before I can match some features with help of the epilines. I am using OpenCV 2.4 with C++. For this purpose I got a set of…
bumuckl
  • 93
  • 1
  • 7
6
votes
1 answer

Point matching algorithm from two different images

I am looking for a method or an algorithm which would allow me to recognize and pair sets of points from two different images, for the purpose of stereo vision. The attached picture presents what I have at the moment: 2 cameras are aligned on the Y…
user2187623
  • 63
  • 1
  • 3
6
votes
2 answers

what is new camera matrix in cvundistortpoints.?

I am facing a problem in understanding what the new camera matrix in cvUndistortpoints. We get a camera matrix of camera in stereocalibration itself and why we have to pass a new cameramatrix in cvstereorectify which we obtain from…
nbsrujan
  • 1,179
  • 1
  • 12
  • 26
6
votes
1 answer

In a calibrated stereo-vision rig, how does one obtain the "camera matrices" needed for implementing a 3D triangulation algorithm?

I am trying to implement the (relatively simple) linear homogeneous (DLT) 3D triangulation method from Hartley & Zisserman's "Multiple View Geometry" (sec 12.2), with the aim of implementing their full, "optimal algorithm" in the future. Right now,…
5
votes
1 answer

Is it possible to run Java3D applications on Nvidia 3D Vision hardware in windowed mode?

Thanks to JohnnyO it was already answered if it is possible to run Java3D application in conjunction with nVidia 3D vision: Is it possible to run Java3D applications on Nvidia 3D Vision hardware? His approach also worked fine for me. But it is…
Sommer
  • 51
  • 1
5
votes
1 answer

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…
ardavar
  • 510
  • 9
  • 20
5
votes
3 answers

Convert between MATLAB stereoParameters and OpenCV stereoRectify stereo calibration

I wish to convert a MATLAB stereoParameters structure to intrinsics and extrinsics matrices to use in OpenCV's stereoRectify. If I understood http://docs.opencv.org/2.4/modules/calib3d/doc/camera_calibration_and_3d_reconstruction.html and…
Gnubie
  • 2,587
  • 4
  • 25
  • 38
1 2
3
33 34