PDA

View Full Version : Presents 3D Movies and 3D Images by using Vizard


Moh200jo
10-25-2009, 06:02 AM
HI
Is possible to present 3D movie and 3D images by using Vizard in passive stereo system?

if so, could you please advice me how can I do so?

could you please also advice whether there are any free websites can provide these (3D Movies and 3D images).



Any suggestions would be appreciated!

farshizzo
10-26-2009, 02:49 PM
There is a knowledge base article (http://kb.worldviz.com/articles/813) that describes how to display a fullscreen texture in the background. The article also shows how to display a different image to the left/right eyes. You can use this to display 3D images/movies.

Moh200jo
11-04-2009, 06:02 AM
HI
Thanks for your link. but I did not really understand how this will work with stereo images (like the I have attached with this message).
any help would be appreciated!
Thanks,

3d Fan
11-29-2009, 03:37 AM
also I do not understand it. Can someone help?

Tommy Boy

3d Fan
11-30-2009, 07:33 AM
no idea?

Thank you

Jerry
12-07-2009, 09:46 AM
Here's a simple stereo viewer which presents the left and right
side-by-side stereo image to the left and right eye of an HMD.
This works with a stereo video as well as a stereo still image.


from viz import *

go(HMD | STEREO)

thepic = add('stereoimage.jpg')

screen1 = add(TEXQUAD, WORLD, 1)
screen1.scale(2,.8,1)
screen1.translate(.5,1.82,.91)

screen2 = add(TEXQUAD, WORLD, 2)
screen2.scale(2,.8,1)
screen2.translate(-.44,1.82,.91)

setscene(1, LEFT_EYE)
setscene(2, RIGHT_EYE)

screen1.texture(thepic)
screen2.texture(thepic)