View Single Post
  #5  
Old 09-01-2016, 04:31 AM
dcnieho dcnieho is offline
Member
 
Join Date: Feb 2011
Posts: 59
hi Jeff,

I have now confirmed that the markers do not seem to swap IDs (at least, if the 'ppt_left' and 'ppt_right' always refer to the same physical marker).
I had the following code run during a run of my experiment:
Code:
def debugVizConnectOpticalHeading():
	import vizconnect, viztask
	# collect raw position and orientation info, as well as merged result
	d=viz.Data(time=viz.tick())
	while True:
		samp = [d.time] + vizconnect.getRawTracker('ppt_left').getPosition() + vizconnect.getRawTracker('ppt_right').getPosition() + vizconnect.getRawTracker('dk2').getEuler() + vizconnect.getRawTracker('head_tracker').getPosition() + vizconnect.getRawTracker('head_tracker').getEuler()
		# print samp to cmd
		d = yield viztask.waitDraw()
viztask.schedule(debugVizConnectOpticalHeading())
Looking at the results, when my head turned, all that changed was the yaw, not the position of the ppt_left and ppt_right or anything else like that. I have sent a plot of the data and the recorded data to your email.

All the best,
Dee
Reply With Quote