#1
|
|||
|
|||
intersense addTracker
Hi all,
I'm having some troubles with a small piece of code. Basically I would like to connect to the Intersense 900 and link my mainview to the tracker and apply a postTranslation to it. (I'm busy writing an exp. using a usb steering wheel and would like to translate the view using the pedals without losing tracking). I'm used to working with apparently an old intersense method and in another lab (where the experiment is working fine) with the VRPN.dle method: Code:
PORT_INTERSENSE = 0 isense = viz.add('intersense.dls') viz.tracker() Code:
vrpn = viz.add('vrpn7.dle') tracker = [] for trackerNr in range(50): tracker.append(vrpn.addTracker('DTrack@192.168.1.100', trackerNr)) tracker[trackerNr].swapPos([-2, 3, 1]) tracker[trackerNr].swapQuat([2, -3, -1, 4]) # tracker[Nr].setBufferSize(2) mv = viz.link(tracker[1], viz.MainView) I saw the message that I should use: Code:
tracker = isense.addTracker(port=1) Code:
viz.tracker() intersense.dls Intersense Driver v4.0.4 **Connected to Intersense device on port 5001 Type: IS Precision Series Model: IS-900 Series Both Station 1 and 2 have the following values: ON ON 1 2 3 0 0 Traceback (most recent call last): File "<string>", line 11, in ? File "intersenseTester.py", line 12, in ? tracker = intersense.addTracker(x) AttributeError: 'VizIntersense' object has no attribute 'addTracker' InterSense is connected on port 1 With the isense.DLE plugin: intersense.dle Intersense Extension InterSense is connected on port 1 ** Load Time: 1.64 seconds ** ERROR: Failed to connect to Intersense tracker on port 1 ** ERROR: Failed to create extension sensor with intersense.dle am I using an old plugin? How can I make it work with Isense like I did with the VRPN Method. Many thanks in advance, Jeroen Derks |
#2
|
|||
|
|||
Mainly I can't use the addTracker function.
Code:
#Add a tracker. isense = viz.add('intersense.dle') tracker = isense.addTracker() #Link the tracker to the view. viz.link( tracker, view ) intersense.dle Intersense Extension InterSense is connected on port 1 ** Load Time: 1.64 seconds ** ERROR: Failed to connect to Intersense tracker on port 1 ** ERROR: Failed to create extension sensor with intersense.dle Do I need to use a more uptodate plugin? What is wrong? Thank you!! |
#3
|
|||
|
|||
Please test with the following short scripts and let us know the output with each.
1. Code:
import viz viz.go() isense = viz.add('intersense.dle') tracker = isense.addTracker() Code:
import viz viz.go() PORT_INTERSENSE = 0 isense = viz.add('intersense.dls') |
#4
|
|||
|
|||
What do you think it can be?
Thanks for helping me! Output 1: Quote:
output 2: Quote:
|
#5
|
|||
|
|||
Please contact support@worldviz.com for further assistance.
|
Thread Tools | |
Display Modes | Rate This Thread |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Failed to connect to intersense | Karma | Precision Position Tracker (PPT) | 1 | 07-01-2011 02:48 PM |
Intersense connection | blessonisaac | Vizard | 2 | 12-06-2010 06:13 PM |
Properly aligning the intersense with the PPT Systems Z Axis | shivanangel | Precision Position Tracker (PPT) | 0 | 11-10-2009 12:35 PM |
world is tilting - intersense or code problem? | billjarrold | Vizard | 2 | 11-06-2009 09:03 AM |
intersense with 5DT glove | sjp | Vizard | 2 | 04-06-2009 08:22 AM |