stereo-3d

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 in the technology... Including nVidia it would seem. Stereoscopy is also known as "3D St...

Libraries to get depth map from stereo images?

I'm going to set up some devices to perform real-time 3D motion tracking. My first idea to do so is to use a pair of cameras to take stereo image and calculate the depth map to get the 3D data I needed. Are there any good open source libraries (C/C++) available and is fast enough for real-time(~12-24fps)? I've found 3D Reconstruction us...

stereo in QT using Open GL

I am trying to make a stereo window in QT--I seem to be lost in the interaction of QT and OpenGL. I have set the stereo context in my GL initialization code QGLFormat fmt fmt.setStereo(true) and when I check the value, it comes back true. I then draw into the GL_BACK_LEFT and GL_BACK_RIGHT buffers (I have also tried just GL_LEFT an...

What might cause OpenGL to behave differently under the "Start Debugging" versus "Start without debugging" options?

I have written a 3D-Stereo OpenGL program in C++. I keep track of the position objects in my display should have using timeGetTime after a timeBeginPeriod(1). When I run the program with "Start Debugging" my objects move smoothly across the display (as they should). When I run the program with "Start without debugging" the objects occ...

openCv cvReprojectImageTo3D problem

I build a program to tracking human by using stereovison via openCv. I success to build the 3d coordinate, when I display this image by openCv (take the x,y,z coords as R,G,B value), I see an image just like disparity iamge, but the top left is red, top right is pink, bottom left is yellow and bottom right is white. The object appear not...