WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rating: Thread Rating: 2 votes, 5.00 average. Display Modes
  #1  
Old 09-23-2008, 11:18 AM
michaelrepucci michaelrepucci is offline
Member
 
Join Date: Jul 2008
Posts: 53
orthographic projection in a head-tracked cave environment

Is it possible to use orthographic projection in a head-tracked cave environment? I set up a cave, and tried to change the perspective
Code:
tracker = viztracker.add()
wall = vizcave.Wall('wall',upperLeft,upperRight,lowerLeft,lowerRight)
cave = vizcave.Cave()
cave.addWall(wall)
cave.setTracker(pos=tracker,ori=tracker)
viz.MainWindow.ortho(left,right,bottom,top,near,far)
but it doesn't look like orthographic projection. I suspect that setTracker is updating the frustum without concern for my desired orthographic projection, since without setTracker I get orthographic projection.
Reply With Quote
  #2  
Old 09-23-2008, 02:46 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
cave.update() will compute and set the new frustum settings for the window. When you call cave.setTracker() you are telling it to automatically call cave.update() every frame using the data from the specified tracker. If you don't want the cave to set the frustum then don't call cave.setTracker() or cave.update().
Reply With Quote
  #3  
Old 09-23-2008, 02:58 PM
michaelrepucci michaelrepucci is offline
Member
 
Join Date: Jul 2008
Posts: 53
So that means I would have to compute the left and right orthographic frustums on each frame? In that case, a cave with just one wall wouldn't be very useful. Or does the cave do something else special?
Reply With Quote
  #4  
Old 09-23-2008, 03:05 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
I'm not sure what you are asking here. If you want to use an orthographic projection matrix then you need to apply it yourself. The number of walls has nothing to do with this. Out of curiosity, why do you need to use an orthographic projection in your CAVE?
Reply With Quote
  #5  
Old 09-23-2008, 03:18 PM
michaelrepucci michaelrepucci is offline
Member
 
Join Date: Jul 2008
Posts: 53
We're using a cave-like setup (a single back-projected screen in an otherwise empty, dark room with head-tracking and stereo via shutter goggles) for experiments on the visual perception of depth. We need orthographic projection of the objects in certain cases to remove the perspective cue to depth (there are many depth cues, such as perspective, occlusion, and stereopsis, among others).

I'd been using vizcave because it seemed to be appropriate for our physical setup, but I'm not entirely clear what benefits I get from using vizcave when I don't want to link the tracker directly to the cave. I suppose that I can only get the appropriate units (i.e., 1 Vizard unit equals 1 meter) if I set up a cave with the right wall dimensions. But aside from that, I'm not sure it's worth setting up a cave.
Reply With Quote
  #6  
Old 12-14-2011, 10:29 AM
AySz88 AySz88 is offline
Member
 
Join Date: Aug 2011
Posts: 13
As an update for anyone else stumbling across this needing to set up a single-wall orthographic "cave", it appears that, instead of a cave, a solution is to set up an orthographic projection like this (example down the world z axis):

<window>.ortho(coordinates of screen in world x and y)
<window>.screenDistance(coordinate of screen in world z)

I'm not sure if head tracking does anything useful in an orthographic projection context - since it's a projection onto the screen that explicitly ignores the viewpoint, it seems like it'd be inappropriate to update the projection matrices using the head position. But I think IPD still needs to be updated somehow from head orientation, for correct stereo - still looking at the best way to do that.

Last edited by AySz88; 12-14-2011 at 10:32 AM. Reason: clarify
Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
navigation in cave environment Andy Vizard 4 03-28-2008 01:32 AM


All times are GMT -7. The time now is 03:51 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC