WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rating: Thread Rating: 2 votes, 5.00 average. Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 06-23-2014, 04:43 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
The 5dt glove does not provide position data of the hand. Some models provide pitch and roll. Most of the measurements are related to finger movements and hand gestures. You'll need an additional position/orientation tracker mounted on the glove for hand tracking. You can link the glove to the data from a physical tracking device (e.g. PPT, inertia cube) or a virtual tracker using keyboard/mouse inputs. The following code links the glove to a keyboard tracker:

Code:
glove = hand.add(sensor,hand.GLOVE_5DT)

#Create virtual tracker using WASD and other key inputs
import viztracker
handTracker = viztracker.Keyboard6DOF()

#Link the hand to the handTracker
gloveLink = viz.link(handTracker, glove)
Then you can link the vase directly to the handTracker:

Code:
vaseLink = viz.link(handTracker, vase)
or to the gloveLink:

Code:
vaseLink = viz.link(gloveLink, vase)
For future posts, please use code tags to preserve indentation. You can find the guidelines for posting code here.
Reply With Quote
 

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
data glove navigation arielasso Vizard 6 10-24-2007 02:15 PM
Use of 5DT Ultra left handed glove pattie Vizard 1 08-26-2006 12:59 PM
5DT Data Glove 5 Ultra Problem bjgold Vizard 1 08-08-2006 04:08 PM
5DT Data Glove 5 Ultra Flexure Question bjgold Vizard 1 07-25-2006 02:58 PM


All times are GMT -7. The time now is 04:24 AM.


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