#1
|
|||
|
|||
vicon pluglin - cluster problems
I have 6 pc’s in an cave environment. All are connected to my vicon tracking server. During visualisation I get this error message "ERROR: Failed to sync frame with following clients:" from different client.
Sometimes my vicon server get also a “fatal error message” which killed my RealTime Engine (set my vicon server offline). I can activate this error if I take out and bring in my vicon tracking object into the recognition area of my vicon camera system. If I do this very often my vicon server get an error and switch into the offline modus. If I use other vicon client software I can not notice this problem. 1. Try the vicon plugin any connection during the streaming mode if the vicon object returned only zero values? Or are there other tcp/ip messages implemented in the vicon plug-in which can produce this fatal error? 2. Is it possible to get the Vicon.sensor date only at the master client and can the master client update the viz.clients with this current tracking data? 3. Furthermore I miss the function viconSensor.getQuat()! How I implement this function in my viconSensorObject? 4. Is it possible to get the source code of the vicon plug-in? vicon-log: Quote:
|
#2
|
|||
|
|||
Do you get the errors when connecting to the Vicon server using a non-clustered script? The current behavior is a bug in the Vicon plugin. In cluster mode, only the master should connect to the server. This will be fixed in the next release.
As a workaround, try the following code which will only load the Vicon plugin on the master computer and loads a dummy extension (VRPN) on the clients: Code:
viz.cluster.setMask(viz.MASTER) vicon = viz.add('vicon.dle',...) #Create vicon plugin on master viz.cluster.setMask(viz.ALLCLIENTS & ~viz.MASTER) viz.add('vrpn7.dle') #Create dummy extension on clients viz.cluster.setMask(viz.ALLCLIENTS) |
#3
|
|||
|
|||
I don't get this error by using a non-clustered script but your workaround works good, thank you!
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Integrating InertiaCube and Vicon data | roman_suvorov | Vizard | 10 | 05-20-2008 04:30 PM |
Vicon plug-in | dudey12 | Plug-in development | 11 | 04-25-2008 08:59 AM |
Cluster Help | videcuk | Vizard | 12 | 09-21-2007 02:14 PM |
Cluster problems for RC1 | hotspur1 | Vizard | 1 | 04-04-2007 12:31 PM |
quad_buffer cluster | John P | Vizard | 4 | 06-07-2006 10:01 PM |