© 2006-2007 ETH Zurich

Uses of Interface
org.ximtec.igesture.core.Gesture

Packages that use Gesture
org.igesture.app.keyboard Mapping gestures to keystrokes (for example copy/paste). 
org.ximtec.igesture Root package containing the iGesture recogniser component. 
org.ximtec.igesture.algorithm Algorithm interfaces to be implemented by new recognition algorithms. 
org.ximtec.igesture.algorithm.myscript Algorithm for intelligent character recognition (ICR) based on MyScript. 
org.ximtec.igesture.algorithm.rubine The Rubine gesture recognition algorithm. 
org.ximtec.igesture.algorithm.rubine3d   
org.ximtec.igesture.algorithm.rubine3d.tools   
org.ximtec.igesture.algorithm.rubinebd The Rubine gesture recognition algorithm. 
org.ximtec.igesture.algorithm.siger The Rubine gesture recognition algorithm. 
org.ximtec.igesture.algorithm.signature A signature-based gesture recognition algorithm. 
org.ximtec.igesture.app.helloworld A Hello World gesture recognition application. 
org.ximtec.igesture.app.showcaseapp A drawing application. 
org.ximtec.igesture.core The core iGesture classes. 
org.ximtec.igesture.core.composite   
org.ximtec.igesture.core.jdom XML import and export functionality for core iGesture classes. 
org.ximtec.igesture.geco.gui   
org.ximtec.igesture.io Input devices. 
org.ximtec.igesture.io.mouseclient   
org.ximtec.igesture.io.tuio   
org.ximtec.igesture.io.wiimote   
org.ximtec.igesture.tool.gesturevisualisation   
org.ximtec.igesture.tool.view.admin.action   
org.ximtec.igesture.tool.view.devicemanager   
org.ximtec.igesture.tool.view.testset.action   
org.ximtec.igesture.util Some utilities. 
 

Uses of Gesture in org.igesture.app.keyboard
 

Methods in org.igesture.app.keyboard with parameters of type Gesture
 void GestureKeyboard.handleGesture(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture
 

Methods in org.ximtec.igesture that return Gesture
 Gesture<?> MultimodalGestureQueue.QueueElement.getGesture()
           
 

Methods in org.ximtec.igesture with parameters of type Gesture
 ResultSet Recogniser.recognise(Gesture<?> gesture)
          Recognises a gesture.
 ResultSet Recogniser.recognise(Gesture<?> gesture, boolean recogniseAll)
          Recognises a gesture.
 

Uses of Gesture in org.ximtec.igesture.algorithm
 

Methods in org.ximtec.igesture.algorithm that return types with arguments of type Gesture
<T> List<Gesture<T>>
SampleBasedAlgorithm.getSamples(GestureClass gestureClass, Class<? extends DefaultSampleDescriptor<T>> type)
          Returns the list of samples of a given gesture class.
 

Methods in org.ximtec.igesture.algorithm with parameters of type Gesture
 ResultSet Algorithm.recognise(Gesture<?> gesture)
          Runs the recogniser on a given set of strokes represented by a gesture.
 

Uses of Gesture in org.ximtec.igesture.algorithm.myscript
 

Methods in org.ximtec.igesture.algorithm.myscript with parameters of type Gesture
 ResultSet HWRecogniser.recognise(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.algorithm.rubine
 

Methods in org.ximtec.igesture.algorithm.rubine with parameters of type Gesture
 ResultSet RubineAlgorithm.recognise(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.algorithm.rubine3d
 

Methods in org.ximtec.igesture.algorithm.rubine3d with parameters of type Gesture
 ResultSet Rubine3DAlgorithm.recognise(Gesture<?> gesture)
          Recognizes a Gesture
 

Uses of Gesture in org.ximtec.igesture.algorithm.rubine3d.tools
 

Methods in org.ximtec.igesture.algorithm.rubine3d.tools that return Gesture
 Gesture<RecordedGesture3D> WiiReader.getGesture()
          Returns a copy of the recorded gesture in a GestureSample3D
 

Methods in org.ximtec.igesture.algorithm.rubine3d.tools that return types with arguments of type Gesture
 List<Gesture<RecordedGesture3D>> Gesture3DTool.getGestureSamples(String setName, String className)
          Returns a list of gesture samples from gesture class with name className from gesture set with name setName
 

Uses of Gesture in org.ximtec.igesture.algorithm.rubinebd
 

Methods in org.ximtec.igesture.algorithm.rubinebd with parameters of type Gesture
 ResultSet RubineAlgorithmBigDecimal.recognise(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.algorithm.siger
 

Methods in org.ximtec.igesture.algorithm.siger with parameters of type Gesture
 ResultSet SigerAlgorithm.recognise(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.algorithm.signature
 

Methods in org.ximtec.igesture.algorithm.signature with parameters of type Gesture
 ResultSet SiGridAlgorithm.recognise(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.app.helloworld
 

Methods in org.ximtec.igesture.app.helloworld with parameters of type Gesture
 void HelloWorldXML.handleGesture(Gesture<?> gesture)
           
 void HelloWorld.handleGesture(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.app.showcaseapp
 

Methods in org.ximtec.igesture.app.showcaseapp with parameters of type Gesture
 void Application.handleGesture(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.core
 

Classes in org.ximtec.igesture.core that implement Gesture
 class GestureSample
          Represents a gesture sample as for example used by the Rubine algorithm.
 class GestureSample3D
           
 

Methods in org.ximtec.igesture.core that return Gesture
 Gesture<?> ResultSet.getGesture()
          Returns the gesture to be recognised.
 Gesture<T> DefaultSampleDescriptor.getSample(int index)
          Returns the gesture sample for a given index position.
 

Methods in org.ximtec.igesture.core that return types with arguments of type Gesture
 List<Gesture<?>> TestClass.getGestures()
          Returns a shallow copy of the gesture instances.
 List<Gesture<T>> DefaultSampleDescriptor.getSamples()
          Returns the samples.
 List<Gesture<org.sigtec.ink.Note>> GestureSample3D.splitToPlanes()
          Splits RecordedGesture3D gesture into three 2D planes.
 

Methods in org.ximtec.igesture.core with parameters of type Gesture
 void TestSet.add(Gesture<?> sample)
          Adds a sample to the list of samples.
 void TestClass.add(Gesture<?> gesture)
          Add a gesture to the test class
 void DefaultSampleDescriptor.addSample(Gesture<T> sample)
          Adds a sample to the descriptor.
 void TestClass.remove(Gesture<?> gesture)
          Remove a gesture from the test class
 void DefaultSampleDescriptor.removeSample(Gesture<T> sample)
          Removes a sample from the gesture set.
 void ResultSet.setGesture(Gesture<?> gesture)
          Sets the gesture to be recognised.
 

Method parameters in org.ximtec.igesture.core with type arguments of type Gesture
 void TestSet.addAll(List<Gesture<?>> samples)
          Adds a list of samples.
 

Uses of Gesture in org.ximtec.igesture.core.composite
 

Methods in org.ximtec.igesture.core.composite with parameters of type Gesture
protected  long DefaultConstraint.getTimeStamp(Gesture<?> gesture, boolean start)
          Get the start or end timestamp of a gesture.
 

Method parameters in org.ximtec.igesture.core.composite with type arguments of type Gesture
 boolean SequenceConstraint.validateConditions(List<Gesture<?>> gestures, IDeviceManager manager)
           
 boolean ProximitySequenceConstraint.validateConditions(List<Gesture<?>> gestures, IDeviceManager manager)
           
 boolean ProximityConcurrencyConstraint.validateConditions(List<Gesture<?>> gestures, IDeviceManager manager)
           
 boolean IntervalConstraint.validateConditions(List<Gesture<?>> gestures, IDeviceManager manager)
           
 boolean DefaultConstraint.validateConditions(List<Gesture<?>> gestures, IDeviceManager manager)
           
 boolean Constraint.validateConditions(List<Gesture<?>> gestures, IDeviceManager manager)
          Validate the constraint conditions.
 boolean ConcurrencyConstraint.validateConditions(List<Gesture<?>> gestures, IDeviceManager manager)
           
 boolean CardinalityUserConstraint.validateConditions(List<Gesture<?>> gestures, IDeviceManager manager)
           
 boolean CardinalityDeviceConstraint.validateConditions(List<Gesture<?>> gestures, IDeviceManager manager)
           
 

Uses of Gesture in org.ximtec.igesture.core.jdom
 

Methods in org.ximtec.igesture.core.jdom that return Gesture
static Gesture<RecordedGesture3D> JdomGestureSample3D.unmarshal(org.jdom.Element sample)
           
 

Constructors in org.ximtec.igesture.core.jdom with parameters of type Gesture
JdomGestureSample(Gesture<org.sigtec.ink.Note> sample)
           
JdomGestureSample3D(Gesture<RecordedGesture3D> sample)
           
 

Uses of Gesture in org.ximtec.igesture.geco.gui
 

Methods in org.ximtec.igesture.geco.gui with parameters of type Gesture
 void MainModel.handleGesture(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.io
 

Methods in org.ximtec.igesture.io that return Gesture
 Gesture<E> GestureDevice.getGesture()
          Returns the gestures.
 Gesture<E> Gesture3DDevice.getGesture3D()
          Returns the gestures.
 

Methods in org.ximtec.igesture.io with parameters of type Gesture
protected  void AbstractGestureDevice.fireGestureEvent(Gesture<?> gesture)
          Fires a Gesture Event
 void GestureEventListener.handleGesture(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.io.mouseclient
 

Methods in org.ximtec.igesture.io.mouseclient that return Gesture
 Gesture<org.sigtec.ink.Note> SwingMouseReader.getGesture()
           
 Gesture<org.sigtec.ink.Note> MouseReader.getGesture()
           
 

Methods in org.ximtec.igesture.io.mouseclient with parameters of type Gesture
 void SwingMouseReaderPanel.handleGesture(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.io.tuio
 

Methods in org.ximtec.igesture.io.tuio that return Gesture
 Gesture<RecordedGesture3D> TuioReader3D.getGesture()
           
 Gesture<org.sigtec.ink.Note> TuioReader2D.getGesture()
           
 Gesture<org.sigtec.ink.Note> TuioReader.getGesture()
           
 Gesture<RecordedGesture3D> TuioReader.getGesture3D()
           
 

Methods in org.ximtec.igesture.io.tuio with parameters of type Gesture
 void TuioReaderPanel.handleGesture(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.io.wiimote
 

Methods in org.ximtec.igesture.io.wiimote that return Gesture
 Gesture<RecordedGesture3D> WiiReader.getGesture()
          Returns a copy of the recorded gesture in a GestureSample3D
 

Methods in org.ximtec.igesture.io.wiimote with parameters of type Gesture
 void WiiReaderPanel.handleGesture(Gesture<?> gesture)
           
 

Uses of Gesture in org.ximtec.igesture.tool.gesturevisualisation
 

Methods in org.ximtec.igesture.tool.gesturevisualisation with parameters of type Gesture
static GesturePanel InputPanelFactory.createGesturePanel(Gesture<?> gesture)
          Creates a new gesture panel
 void RecordedGesture3DPanel.init(Gesture<?> gesture)
           
 void NotSupportedGesturePanel.init(Gesture<?> gesture)
           
 void NoteGesturePanel.init(Gesture<?> gesture)
           
 void GesturePanel.init(Gesture<?> gesture)
          Initializes the gesture panel.
 

Uses of Gesture in org.ximtec.igesture.tool.view.admin.action
 

Constructors in org.ximtec.igesture.tool.view.admin.action with parameters of type Gesture
RemoveGestureSampleAction(Controller controller, DefaultSampleDescriptor descriptor, Gesture<?> sample)
           
 

Uses of Gesture in org.ximtec.igesture.tool.view.devicemanager
 

Methods in org.ximtec.igesture.tool.view.devicemanager that return Gesture
 Gesture<org.sigtec.ink.Note> BlueToothReader.getGesture()
           
 

Uses of Gesture in org.ximtec.igesture.tool.view.testset.action
 

Constructors in org.ximtec.igesture.tool.view.testset.action with parameters of type Gesture
RemoveSampleAction(Controller controller, TestClass descriptor, Gesture<?> sample)
           
 

Uses of Gesture in org.ximtec.igesture.util
 

Methods in org.ximtec.igesture.util that return types with arguments of type Gesture
static List<Gesture<org.sigtec.ink.Note>> RecordedGesture3DTool.splitToPlanes(RecordedGesture3D gs)
          Splits RecordedGesture3D gesture into three 2D planes.
 


© 2006-2007 ETH Zurich

Copyright © 2007-2010 Global Information Systems Group, ETH Zurich. All Rights Reserved.