views:

40

answers:

2

Hi any good references on displaying sequence of images from a video as voxel data in OpenGL? I want to display all these images at once as a cuboid with 50% alpha and navigate using keyboard or mouse. Any suggestions or references would be of great help. Thank you

A: 

Try what these guys are doing.

genpfault
+1  A: 

Check out this tutorial on setting up a 3D texture.

If you then render slices through the texture array with the appropriate UVW coordinates you will get what you are after.

Goz
thanks Goz, there's actually example in OpenGL book about 3D Texture. A quick question, do you know how to load a PNG image into GLubyte array?
reddy
Goz