WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 08-31-2016, 07:27 AM
rroemmich29 rroemmich29 is offline
Member
 
Join Date: Aug 2016
Posts: 5
Jerky changes in view velocity when updating with timer

Hi all,

We have created a visual flow environment where the velocity of the flow matches the velocity of a treadmill in our lab. The velocity of the treadmill changes from step to step based on the step length of the participant and the visual flow in turn updates to the same velocity.

I am having an issue where the visual flow transitions from one velocity to another appear to have some jitter and was wondering if anyone could give me some advice on how to eliminate it. Essentially, when the flow changes velocity, the screen appears to jitter back and forth very briefly (a matter of milliseconds) before settling on the new velocity.

When I run something like this, the view velocity updates very smoothly:

Code:
vel = 1.2
velcount = 1
view = viz.MainView
view.eyeheight(1.7)

def updatevel():
	global vel
	view.velocity([0,0,vel])
	print vel

def addvel():
	global vel
	global velcount
	if velcount == 1:
		vel=vel+1
		velcount = 2
	else:
		vel=vel-1
		velcount = 1

def updatefn():
	updatevel()
	addvel()
	
vizact.ontimer(1,updatefn)
I am unsure why my code differs from this and have attached it below in case anyone has any ideas. I am happy to provide further information if anything is unclear.

Thanks in advance!
Attached Files
File Type: txt VirtualStreetSystem.txt (7.0 KB, 676 views)
Reply With Quote
 


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
animation path problem - coordinates not resetting jelly Vizard 7 04-26-2016 10:45 AM
Using Oculus and Vicon for updating in pit Qiliang He Vizard 1 09-06-2015 02:46 PM
Prevent Oculus DK2 updating the view with accelerometer info Notch Vizard 3 10-24-2014 11:06 AM
View nlfrnassimi Vizard 4 03-12-2009 05:25 AM
problem with stereo mode shivanangel Vizard 3 10-17-2006 09:58 AM


All times are GMT -7. The time now is 06:51 AM.


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