WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 09-24-2018, 02:11 AM
Vishav Vishav is offline
Member
 
Join Date: Jun 2017
Posts: 57
Use of viztouch for Right/Wrong Responses

Hi,

I am new to the use of touch monitor; I want to use it for vizard based application in which user has to use the touchscreen to make choice among multiple available options.

Once the option is chosen by a user (using finger touch) the interface will record it and move to next task.

How this could be possible in vizard code?
Reply With Quote
  #2  
Old 09-25-2018, 03:39 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
The viztouch module is undocumented but may work for your application. I'm not sure that it's compatible with the latest versions of Windows. Run the viztouch.py module included with Vizard and that will start up a demo.
Reply With Quote
  #3  
Old 09-25-2018, 03:55 AM
Vishav Vishav is offline
Member
 
Join Date: Jun 2017
Posts: 57
Yes. I run viztouch.py and it is working. But how it will work for touch-based responses application?
Reply With Quote
  #4  
Old 09-25-2018, 04:08 AM
Vishav Vishav is offline
Member
 
Join Date: Jun 2017
Posts: 57
The viztouch.py showed the demo of drawing a line using a touch monitor. But my requirement is to show three objects to the user and user will select one. Once the user touches one object; system recognizes it as it do for mouse click and give feedback.
Reply With Quote
  #5  
Old 09-25-2018, 04:12 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
The viztouch module includes the following events:

Code:
TOUCH_DOWN_EVENT
TOUCH_UP_EVENT	
TOUCH_MOVE_EVENT
GESTURE_EVENT
You can set up the program flow using viztask and wait for touch events using the waitEvent command. Once a touch event happens, you'll have to determine the region (e.g. Yes button, No button) based on the touch point.
Reply With Quote
  #6  
Old 09-26-2018, 12:17 AM
Vishav Vishav is offline
Member
 
Join Date: Jun 2017
Posts: 57
Your suggestions helped with the problem. But now I stuck in
(i) finding the position of touch event using viztouch.
(ii) And how to separate out my touch event for objects from the rest of the screen?
Reply With Quote
  #7  
Old 09-26-2018, 04:15 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
What version of Windows OS are you running?

When the touch event is triggered it will return an event object with the following:

point: a TouchPoint object which contains time and position data
pos: the pixel position

If you're waiting for the event using viztask, the data object returned will contain the event data. See the example code in the waitEvent page to see how to access that information.

You'll need to know the pixel boundaries of your touch objects and then compare the position data against that.
Reply With Quote
  #8  
Old 09-26-2018, 05:25 AM
Vishav Vishav is offline
Member
 
Join Date: Jun 2017
Posts: 57
I am using Windows 7

I am attaching code below:
ob5=viz.add('D:\PhD\Study-I_Part_I\My_Objects\Bowl\Bowl.dae',pos=[1.25,1.15,-0.26],euler=[0,0,0],scale =(0.1,0.1,0.1))
ob6=viz.add('D:\PhD\Study-I_Part_I\My_Objects\Teapot\Teapot.dae',pos=[1.3,0.935,0.93],euler=[90,0,0],scale =(0.09,0.08,0.09))
d = yield viztask.waitEvent(viztouch.TOUCH_UP_EVENT)
##### what next###########
Reply With Quote
  #9  
Old 09-26-2018, 09:59 PM
Vishav Vishav is offline
Member
 
Join Date: Jun 2017
Posts: 57
As you said when an event is triggered it will return an event object; in my case it is returning :
(<viz.Event object at 0x00000000045386D8>,)
How to interpret it?

I am attaching a screenshot with it
Reply With Quote
Reply

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
VizTouch Help! Majestic12 Vizard 2 08-15-2014 02:02 PM


All times are GMT -7. The time now is 01:11 AM.


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