Questions tagged [stereoscopy]

Stereoscopy refers to a technique for creating or enhancing the illusion of depth in an image by presenting two offset images separately to the left and right eye of the viewer.

Stereoscopy refers to a technique for creating or enhancing the illusion of depth in an image by presenting two offset images separately to the left and right eye of the viewer.

This technique is distinguished from 3D displays that display an image in three full dimensions, allowing the observer to increase information about the 3-dimensional objects being displayed by head and eye movements.

Source: http://en.wikipedia.org/wiki/Stereoscopy

172 questions
3
votes
0 answers

OpenGL quad buffered stereo doesn't show both buffers

When using quad buffered stereo with my application, my video card does support quad buffered stereo (Quadro 5000/PCIe/SSE2), only one buffer is displayed on the screen, i am using glut and openGL with vbos arrays, i am initialising glut this way : …
aze
  • 832
  • 4
  • 12
  • 34
3
votes
1 answer

How to move epipole to the outside of the image

Hi i had computed the fundamental matrix from two images and i found out that the epipoles lie within the image. I cannot do the rectification using matlab if the image contains epipole. May i know how to compute the fundamental matrix that the…
kenneth
  • 167
  • 2
  • 10
3
votes
2 answers

openCV Depth map from two calibrated cameras forming a stereoscopic system

I would like some help in continuing my code using openCV library in order to find the depth values of objects seen in the cameras. I have already done the calibration and found the dispaity map, i can't find a clear help of how to calculate the…
Rita M
  • 33
  • 1
  • 3
3
votes
2 answers

nvapi use of NvAPI_Stereo_SetDriverMode in d3d10

I'm currently trying to set nvapi to work in a direct mode with the function NvAPI_Stereo_SetDriverMode. According to Nvidia nvapi site (in the manual), if you would like to make a direct3d implementation you need to initialize nvpai , then set…
Alon Samuel
  • 356
  • 2
  • 8
2
votes
1 answer

Stereoscopic rendering

I am trying to come up with an app that renders two videostreams from webcams in a way that they are perceived as stereoscopic image on a 3D display. I have never dealt with stereoscopic 3D before, but thoretically this should be as simple as…
Corvin
  • 990
  • 11
  • 17
2
votes
3 answers

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 of two pixels i computed the squared difference of…
Jim Cocke
2
votes
1 answer

Stereoscopy and virtual camera settings

I would like to know if any of you, knows a way to compute two camera matrices (left and right) from a simple camera matrix? In order to have a stereoscopic effect (simulating both eyes of a human being). Thanks for your help.
Silouane
  • 432
  • 6
  • 13
2
votes
3 answers

Is stereoscopy (3D stereo) making a come back?

I'm working on a stereoscopy application in C++ and OpenGL (for medical image visualization). From what I understand, the technology was quite big news about 10 years ago but it seems to have died down since. Now, many companies seem to be investing…
Nick Bolton
  • 38,276
  • 70
  • 174
  • 242
2
votes
1 answer

Stereo Calibration and 3D Reconstruction Issue

I am trying to perform stereo camera calibration and 3D reprojection of a calculated disparity image. For the sake of simplicity I made this example in Matlab but getting the same result in Python and OpenCV. I use this piece of code for the…
2
votes
0 answers

How to rectify my own image to the cameras of the KITTI dataset using OpenCV

Based on the documentation of stereo-rectify from OpenCV, one can rectify an image based on two camera matrices, their distortion coefficients, and a rotation-translation from one camera to another. I would like to rectify an image I took using my…
Sam Hammamy
  • 10,819
  • 10
  • 56
  • 94
2
votes
0 answers

Bad disparity map

I am unable to establish a good disparity map, though I have tuned every of parameters of the SGBM algorithm. Changing the length of the baseline does not help either. I do understand, that problems are most likely due to the camera setup. Because,…
2
votes
1 answer

How to use UI with Stereoscopic videos in Unity?

I have to develop 360 experience in Virtual Reality Stereoscopic in Unity When adding a UI to the Stereoscopic experience in Unity, it appears as if I have two UI's in the scene. To solve this problem, I created two UI's with two cameras in the…
Behrouz Riahi
  • 1,751
  • 2
  • 21
  • 42
2
votes
1 answer

OpenCV Pointcloud with cv2.reprojectImageTo3D getting deepth by n by 3 matrix

I used the SBGM algorithm to create a disparity Image and it gets me a beautiful image import numpy as np import cv2 #load unrectified images unimgR =cv2.imread("R.jpg") unimgL =cv2.imread("L.jpg") #load calibration from calibration…
hajo
  • 314
  • 1
  • 4
  • 12
2
votes
1 answer

OpenCV Stereo Camera Calibration Error: Assertion failed

I know this question was asked a few Times, but the answers doesn't solve my problem. I want to calibrate a pair of Cameras to use as Stereo Input. But when I run the code I get the error Message : OpenCV(3.4.1) Error: Assertion failed (nimages >…
Chris
  • 25
  • 6
2
votes
1 answer

8 point algorithm for estimating Fundamental Matrix

I'm watching a lecture about estimating the fundamental matrix for use in stereo vision using the 8 point algorithm. I understand that once we recover the fundamental matrix between two cameras we can compute the epipolar line on one camera given a…
Carpetfizz
  • 8,707
  • 22
  • 85
  • 146
1 2
3
11 12