© 2006-2007 ETH Zurich

Uses of Class
org.ximtec.igesture.core.GestureClass

Packages that use GestureClass
hacks   
org.ximtec.igesture.algorithm Algorithm interfaces to be implemented by new recognition algorithms. 
org.ximtec.igesture.algorithm.rubine The Rubine gesture recognition algorithm. 
org.ximtec.igesture.algorithm.rubine3d.tools   
org.ximtec.igesture.algorithm.rubinebd The Rubine gesture recognition algorithm. 
org.ximtec.igesture.algorithm.signature A signature-based gesture recognition algorithm. 
org.ximtec.igesture.batch Batch processing functionality for algorithm evaluation. 
org.ximtec.igesture.core The core iGesture classes. 
org.ximtec.igesture.core.jdom XML import and export functionality for core iGesture classes. 
org.ximtec.igesture.geco.dialog   
org.ximtec.igesture.geco.gui   
org.ximtec.igesture.geco.mapping   
org.ximtec.igesture.geco.xml   
org.ximtec.igesture.tool.util   
org.ximtec.igesture.tool.view.admin.panel   
org.ximtec.igesture.util Some utilities. 
 

Uses of GestureClass in hacks
 

Methods in hacks with parameters of type GestureClass
static com.lowagie.text.pdf.PdfPCell PDFTool.createImageCell(GestureClass gestureClass)
          Creates a table cell with a gesture sample and the name.
 

Uses of GestureClass in org.ximtec.igesture.algorithm
 

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

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

Methods in org.ximtec.igesture.algorithm.rubine that return GestureClass
 GestureClass GestureClassHelper.getGestureClass()
           
 

Constructors in org.ximtec.igesture.algorithm.rubine with parameters of type GestureClass
GestureClassHelper(GestureClass gestureClass, RubineConfiguration configuration, CountDownLatch latch)
           
 

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

Methods in org.ximtec.igesture.algorithm.rubine3d.tools with parameters of type GestureClass
 void Gesture3DToolUI.selectGestureClass(GestureClass gClass)
           
 

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

Methods in org.ximtec.igesture.algorithm.rubinebd that return GestureClass
 GestureClass GestureClassHelper.getGestureClass()
           
 

Constructors in org.ximtec.igesture.algorithm.rubinebd with parameters of type GestureClass
GestureClassHelper(GestureClass gestureClass, RubineConfiguration configuration, CountDownLatch latch)
           
 

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

Methods in org.ximtec.igesture.algorithm.signature that return GestureClass
 GestureClass GestureSignature.getGestureClass()
          Returns the gesture class this signature belongs to.
 

Constructors in org.ximtec.igesture.algorithm.signature with parameters of type GestureClass
GestureSignature(org.sigtec.ink.Note note, GestureClass gestureClass, int rasterSize, int gridSize)
          Constructs a new gesture signature.
 

Uses of GestureClass in org.ximtec.igesture.batch
 

Constructors in org.ximtec.igesture.batch with parameters of type GestureClass
Statistic(GestureClass gestureClass)
          Constructs a new class statistic.
 

Uses of GestureClass in org.ximtec.igesture.core
 

Methods in org.ximtec.igesture.core that return GestureClass
 GestureClass Result.getGestureClass()
          Returns the result gesture class.
 GestureClass GestureSet.getGestureClass(int index)
          Returns the gesture class at position index.
 GestureClass GestureSet.getGestureClass(String name)
          Returns the gesture class with the specified name or null if a gesture class with the specified name does not exist.
 

Methods in org.ximtec.igesture.core that return types with arguments of type GestureClass
 List<GestureClass> GestureSet.getGestureClasses()
          Returns the list of all gesture classes the gesture set contains.
 

Methods in org.ximtec.igesture.core with parameters of type GestureClass
 void GestureSet.addGestureClass(GestureClass gestureClass)
          Adds a gesture class to the set.
 boolean ResultSet.contains(GestureClass gestureClass)
          Returns true if the result set contains the given gesture class.
 void GestureSet.removeGestureClass(GestureClass gestureClass)
          Removes a gesture class from the gesture set.
 void Result.setGestureClass(GestureClass gestureClass)
           
 void Visitor.visit(GestureClass gestureClass)
           
 

Constructors in org.ximtec.igesture.core with parameters of type GestureClass
Result(GestureClass gestureClass, double accuracy)
          Constructs a new result.
 

Constructor parameters in org.ximtec.igesture.core with type arguments of type GestureClass
GestureSet(List<GestureClass> gestureClasses)
          Constructs a new gesture set from a list of gesture classes.
 

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

Methods in org.ximtec.igesture.core.jdom that return GestureClass
static GestureClass JdomGestureClass.unmarshal(org.jdom.Element gestureClassElement)
           
 

Constructors in org.ximtec.igesture.core.jdom with parameters of type GestureClass
JdomGestureClass(GestureClass gestureClass)
           
 

Uses of GestureClass in org.ximtec.igesture.geco.dialog
 

Methods in org.ximtec.igesture.geco.dialog with parameters of type GestureClass
 void MappingDialog.showDialog(GestureClass gc)
          Shows the dialog.
 

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

Fields in org.ximtec.igesture.geco.gui with type parameters of type GestureClass
 Hashtable<String,GestureClass> MainModel.gestureClassesTable
           
 

Methods in org.ximtec.igesture.geco.gui that return GestureClass
 GestureClass MainView.getSelectedClass()
          Return the selected Gesture Class
 

Methods in org.ximtec.igesture.geco.gui that return types with arguments of type GestureClass
 SortedListModel<GestureClass> MainModel.getGestureListModel()
          Returns the model for the gesture List
 Hashtable<GestureClass,GestureToActionMapping> MainModel.getMappings()
           
 

Uses of GestureClass in org.ximtec.igesture.geco.mapping
 

Fields in org.ximtec.igesture.geco.mapping declared as GestureClass
protected  GestureClass GestureToActionMapping.gestureClass
           
 

Methods in org.ximtec.igesture.geco.mapping that return GestureClass
 GestureClass GestureToActionMapping.getGestureClass()
          Returns the gesture class
 

Constructors in org.ximtec.igesture.geco.mapping with parameters of type GestureClass
GestureToActionMapping(GestureClass gesture, GestureAction action)
          Constructor
 

Uses of GestureClass in org.ximtec.igesture.geco.xml
 

Constructors in org.ximtec.igesture.geco.xml with parameters of type GestureClass
JdomGestureElement(GestureClass gestureClass)
           
 

Uses of GestureClass in org.ximtec.igesture.tool.util
 

Methods in org.ximtec.igesture.tool.util with parameters of type GestureClass
 void PropertyChangeVisitor.visit(GestureClass gestureClass)
           
 

Uses of GestureClass in org.ximtec.igesture.tool.view.admin.panel
 

Constructors in org.ximtec.igesture.tool.view.admin.panel with parameters of type GestureClass
GestureClassPanel(Controller controller, GestureClass gestureClass)
           
 

Uses of GestureClass in org.ximtec.igesture.util
 

Methods in org.ximtec.igesture.util with parameters of type GestureClass
static void GestureTool.hasSampleEnoughPoints(GestureClass gestureClass, int min)
           
 


© 2006-2007 ETH Zurich

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