#1
|
|||
|
|||
Integrated orientation tracker in zSight HMD
Hi All,
Our lab recently purchased a zSight HMD, which integrated a 3DOF orientation tracker. We were exciting that a simple code can make it work, as below: Code:
import sensics hmd = sensics.zSight_60() tracker = sensics.zSightSensor() viz.link(tracker, viz.MainView) Another question is that it seems the default position of the HMD is fixed (i.e. 1.76 m above the ground). Is there a way to change the default position of the zSight tracker? Thanks in advance. Zhi |
#2
|
|||
|
|||
I'm not sure how the zSight sensor calibrates itself. You might need to ask Sensics about this. Either way, you will need to apply a postEuler operator on the view link to align it with your virtual north. Example:
Code:
view_link = viz.link(tracker, viz.MainView) view_link.postEuler([45,0,0]) Code:
viz.MainView.setPosition([1,2,3]) |
#3
|
|||
|
|||
Thank you farshizzo. I have contacted sensics support team. They told me that zSight tracker is not self calibrated. So, I made a calibration function using the code you suggested.
Zhi |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Intermittent orthographic stereo projection problems | AySz88 | Vizard | 10 | 02-17-2012 01:50 PM |
The problem of tracker using via VRPN | _kj_ | Vizard | 2 | 08-13-2009 01:03 AM |
problem in setting the orientation of bones | bharatbhushan | Vizard | 0 | 06-30-2009 05:30 AM |
CAVE PPT Tracker Help with Orientation Inversion on Up and Down | shivanangel | Vizard | 3 | 03-11-2009 10:14 PM |
Can you link the position of a tracker to the orientation of an object? | michaelrepucci | Vizard | 1 | 09-19-2008 11:23 AM |