Open Inventor Release 2024.2.0
 
Loading...
Searching...
No Matches
Displaying in Stereo

Setting the camera in stereo mode is the first step. The next step is to set the display in stereo mode. Open Inventor provides two types of stereo display: software and hardware. Hardware stereo relies on the OpenGL implementation and the graphics board, whereas software stereo relies on techniques independent of the graphics board.

The stereo modes for the display are set via the viewers. They automatically set the camera to the correct stereo mode. Therefore, in most situations, you can forget most of what you learned in Left and Right Eye Projections.

Stereo Modes for the Display

Whereas stereo mode for the camera means setting the projection matrix for each eye so that the scene will be rendered as if it were seen by each eye, the stereo modes for the display adapt each rendered view to a specific type of stereo technique. The supported stereo techniques are:

  • Use of the underlying OpenGL stereo capabilities. (This is known as “quad buffered” rendering because OpenGL provides front and back buffers for each of the left and right eye views.)
  • Left and right UserGuide_Images interleaved (used by light polarizer systems, for example).
  • Anaglyph UserGuide_Images (Red/Cyan, Yellow/Blue and Magenta/Green glasses).
  • Half-screen display (UserGuide_Images displayed separately on the screen). The first mode (SoRawStereo) is the only hardware stereo mode. It requires the graphics board to support OpenGL stereo, as well as the OpenGL driver supplied by the board vendor. All the other modes are considered software stereo since they don’t require any specific hardware.

Each type of stereo is implemented by a separate class. The viewers are the basis for use of stereo display modes. Setting the stereo rendering mode for a viewer means passing an object of a particular stereo class to the viewer. All classes of stereo rendering are subclasses of the SoBaseStereo class.

"Important"

This is the only stereo mode supported in older versions (e.g., before Open Inventor 2.6) of Open Inventor. It is dependent on the OpenGL driver on the system as well as the graphics board. If an appropriate pixel format can be found for the current screen resolution, stereo is activated and works through the usual FRONT_LEFT / BACK_LEFT and FRONT_RIGHT / BACK_RIGHT OpenGL buffers. This mode has the advantage of being hardware accelerated and has almost no overhead between/after rendering.

Essentially all stereo modes reduce overall frame rate because of the need
to render each frame twice (left and right). It is implemented by the SoRawStereo class.

Interleaved Stereo

This type of stereo is important for light polarizing systems. Every other scanline on the screen is used for the left eye; the alternate scanlines are used for the right eye. This type of stereo is implemented by SoInterlacedStereo and actually has four modes. Two of them interleave horizontal lines, and two of them interleave vertical lines. In each category, one mode uses a fast algorithm and the other mode sacrifices speed for quality.

This type of stereo will try to make use of the OpenGL stencil buffer on the graphics board to accelerate the rendering speed as much as possible. (This could interfere with the application’s use of the stencil buffer.) If no stencil buffer is available, the interleaving is done by the main processor instead of the graphics board. (This can have very poor performance.)

Note that this type of stereo, although it provides a highly comfortable view, has a specific drawback. Since it uses alternate scanlines to draw the view for each eye, it means that lines in the scene (wireframe mode, line set,…) might drop out of view if they happen to be horizontal (or vertical, depending on the orientation of the interleaving); they might also appear in only one view. This is a problem somewhat similar to aliasing. The two modes sacrificing speed for quality specifically address this problem and artificially enlarge all horizontal lines (or vertical for vertical interleaving) and thin objects to make them visible to both eyes.

One type of hardware specifically enabled by this stereo mode is the stereo projector. Utilizing a polarizing filter and a special screen, the projector allows a large number of people to see the stereo effect simultaneously. For example, see www.vrex.com.

This mode allows hardware acceleration but has moderate to significant overhead between/after rendering.

Anaglyph Stereo

Anaglyph stereo refers to color filtered UserGuide_Images. The view for one eye is displayed with one or two color channels plus the alpha channel; the view for the second eye is displayed using the remaining color channels plus the alpha channel. The most common mode uses Red/Green glasses. This type is implemented by SoAnaglyphStereo . Note that because all color channels are used, the possibilities are actually Red/Cyan, Yellow/Blue, and Magenta/Green. Red/Green glasses can therefore be used for Red/Cyan as well as Magenta/Green modes. This type of stereo makes use of OpenGL color masks. NOTE: For best results, all the objects in the scene should be a shade of gray. This ensures that all objects are visible to both eyes. To the contrary, shapes with only red or green or blue colors will appear only in one eye view and therefore look flat. This mode allows hardware acceleration and has little overhead between/after rendering.

Half-Screen Stereo

With this type of stereo, each view is displayed either side by side or one under the other. In each category, the view can either be stretched to cover the largest part of the screen possible or the aspect ratio may be maintained so that the scene is not distorted. This type of stereo is implemented by the SoHalfScreenStereo class. Usually, it is intended for systems with mirror glasses capable of showing one half of the screen to one eye and the other half to the other eye. Some glasses make use of stretched UserGuide_Images by stretching them back to their original aspect ratio. The stretch-back is an optical operation, not a digital one. Therefore, the amount of information (the light) is higher than with a non-stretched image, resulting in a higher quality image.

An interesting effect of the non-stretched-vertical-half-screen mode is that it can be viewed with the naked eye, like a stereogram: just cross your eyes to match both UserGuide_Images.

This mode allows hardware accelerated rendering and has very little overhead between/after rendering.

Graphical User Interface

standard with Open Inventor. The range of values for the parallax balance and the camera offset is limited to what is usually used for comfortable viewing: from -1 to 3 for the parallax balance and from 0 to 2 for the offset. The application interface has no such limitations.

Application Interface

All viewers have the capability of setting all stereo parameters. They are the preferred way of accessing stereo. Note that the application interface for stereo also accepts calls made for the older stereo model. Both are discussed here.

Interface for the current stereo model

The first step when setting the stereo is to specify the type of stereo to use:

C++ :

void setStereoViewType( SoBaseStereo* stereo );
SoBaseStereo* getStereoViewType();

C# :

void SetStereoViewType( SoBaseStereo stereo );
SoBaseStereo GetStereoViewType();

Java :

Again, SoBaseStereo is the base class for all stereo classes. For instance, to set the stereo viewing type to fast horizontal interleaved mode:

C++ :

SoInterlacedStereo* stereo = new SoInterlacedStereo;
stereo->setInterlacedMode( SoInterlacedStereo::HORIZONTAL );
stereo->setFastInterlacing( TRUE );
myViewer->setStereoViewType( stereo );

C# :

SoInterlacedStereo stereo = new SoInterlacedStereo();
stereo.SetInterlacedMode( SoInterlacedStereo.InterlacedModes.HORIZONTAL );
stereo.SetFastInterlacing( true );
myViewer.SetStereoViewType( stereo );

Java :

Then, set the adjustment for the parallax balance and for the camera offset. This usually does not need to be modified since both of them are automatically computed according to the current view volume.

C++ :

void setStereoBalance( float balance );
float getStereoBalance();
void setStereoOffset( float dist );
float getStereoOffset();
// Multiply by 2 the actual offset.
// This deepens the appearance of the scene
myViewer->setStereoOffset( 2 );
// Multiply by 1.5 the balance. The scene will appear behind the screen
myViewer->setStereoBalance( 1.5f );

C# :

void SetStereoBalance( float balance );
float GetStereoBalance();
void SetStereoOffset( float dist );
float GetStereoOffset();
// Multiply by 2 the actual offset.
// This deepens the appearance of the scene
myViewer.SetStereoOffset( 2 );
// Multiply by 1.5 the balance. The scene will appear behind the screen
myViewer.SetStereoBalance( 1.5f );

C# :

void SetStereoBalance( float balance );
float GetStereoBalance();
void SetStereoOffset( float dist );
float GetStereoOffset();
// Multiply by 2 the actual offset.
// This deepens the appearance of the scene
myViewer.SetStereoOffset( 2 );
// Multiply by 1.5 the balance. The scene will appear behind the screen
myViewer.SetStereoBalance( 1.5f );

Java :

The following step actually activates the stereo. Until this call, rendering is still in monoscopic mode.

C++ :

void setStereoActive( SbBool activate );
SbBool isStereoActive();
// Activate stereo
myViewer->setStereoActive( TRUE );

C# :

void SetStereoActive( bool activate );
bool IsStereoActive();
// Activate stereo
myViewer.SetStereoActive( true );

This call forces the render operation to go through the stereo object render code. The stereo object will then be able to set the camera to the correct stereo mode and render each view.

Deactivating stereo requires only one call:

C++ :

// Deactivate stereo
myViewer->setStereoActive( FALSE );

C# :

// Deactivate stereo
myViewer->SetStereoActive( false );

As the viewer is still set to a specific type of stereo with the specific stereo parameter values, reactivating the stereo only requires calling setStereoActive(TRUE).

Other methods of the viewer on the described stereo model apply but they will be discussed in the section called “ SoStereoViewer”.

Interface for the old stereo model

To insure backward compatibility with older Open Inventor versions, and specifically with the old stereo model, the following methods still apply to stereo:

C++ :

void setStereoViewing( SbBool onOrOff );
SbBool isStereoViewing();
void setStereoOffset( float dist );
float getStereoOffset();

C# :

void SetStereoViewing( bool onOrOff );
SbBool IsStereoViewing();
void SetStereoOffset( float dist );
float GetStereoOffset();

About the old stereo model:

Like the current stereo model, the old model makes use of an offset to represent the eye separation. However, instead of adapting the view volume, the cameras were rotated toward the default point of focus, creating the stereo viewing angle.

If no type of stereo (from the current stereo model) is set on the viewer and setStereoViewing() is called, then the old stereo model is in effect. Note that setStereoViewing() is the method that actually sets OpenGL in stereo mode. If the old stereo model is in effect, then the offset passed to setStereoOffset() is no longer a factor but the actual value used to separate the cameras. In that case, the default value for the offset is 3.