© 2006-2007 ETH Zurich

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

Packages that use GestureSet
hacks   
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.rubine3d.tools   
org.ximtec.igesture.algorithm.signature A signature-based gesture recognition algorithm. 
org.ximtec.igesture.batch Batch processing functionality for algorithm evaluation. 
org.ximtec.igesture.configuration Algorithm configuration. 
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.gui   
org.ximtec.igesture.geco.gui.action   
org.ximtec.igesture.geco.xml   
org.ximtec.igesture.tool.util   
org.ximtec.igesture.tool.view   
org.ximtec.igesture.tool.view.admin.panel   
org.ximtec.igesture.tool.view.admin.wrapper   
org.ximtec.igesture.tool.view.batch   
org.ximtec.igesture.util Some utilities. 
 

Uses of GestureSet in hacks
 

Methods in hacks with parameters of type GestureSet
static com.lowagie.text.pdf.PdfPTable PDFTool.createGestureSetTable(GestureSet set)
           
static com.lowagie.text.pdf.PdfPTable PDFTool.createGestureSetTable(GestureSet set, int columns)
          Creates a table filled with a sample gesture and the corresponding name.
 

Uses of GestureSet in org.ximtec.igesture
 

Constructors in org.ximtec.igesture with parameters of type GestureSet
MultimodalGestureRecogniser(GestureSet set, IDeviceManager manager)
          Constructor
MultimodalGestureRecogniser(GestureSet set, IDeviceManager manager, int ppt)
          Constructor
Recogniser(Configuration config, GestureSet gestureSet)
          Creates a new recogniser.
 

Uses of GestureSet in org.ximtec.igesture.algorithm
 

Methods in org.ximtec.igesture.algorithm with parameters of type GestureSet
static boolean AlgorithmTool.verifyDescriptor(GestureSet set, Class<? extends Descriptor> descriptorType)
          Returns true if all Gesture Classes of the Gesture Set have the required descriptor.
 

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

Methods in org.ximtec.igesture.algorithm.rubine3d.tools that return GestureSet
 GestureSet Gesture3DTool.getGestureSet(String setName)
          Returns GestureSet with name setName from the database
 

Methods in org.ximtec.igesture.algorithm.rubine3d.tools that return types with arguments of type GestureSet
 List<GestureSet> Gesture3DTool.getGestureSets()
          Returns a list of all the GestureSets in the database
static List<GestureSet> BatchTest3DTool.splitSetToPlanes(GestureSet gestureSet3D)
           
 

Methods in org.ximtec.igesture.algorithm.rubine3d.tools with parameters of type GestureSet
static TestSet BatchTest3DTool.convert2DGestureSetToTestSet(GestureSet gestureSet)
          Converts a GestureSet to a TestSet
static TestSet BatchTest3DTool.convert3DGestureSetToTestSet(GestureSet gestureSet)
          Converts a GestureSet to a TestSet
 void Gesture3DToolUI.selectGestureSet(GestureSet set)
           
static List<GestureSet> BatchTest3DTool.splitSetToPlanes(GestureSet gestureSet3D)
           
 

Method parameters in org.ximtec.igesture.algorithm.rubine3d.tools with type arguments of type GestureSet
 void Gesture3DToolUI.setGestureSetsBox(List<GestureSet> gestureSets)
           
 

Constructors in org.ximtec.igesture.algorithm.rubine3d.tools with parameters of type GestureSet
BatchTest3DTool(TestSet testSet, GestureSet gestureSet, String configFileName, String outputDirName)
          Constructor
 

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

Methods in org.ximtec.igesture.algorithm.signature with parameters of type GestureSet
 void SiGridAlgorithm.preprocess(GestureSet gestureSet)
          Creates sample signatures.
 

Uses of GestureSet in org.ximtec.igesture.batch
 

Methods in org.ximtec.igesture.batch that return types with arguments of type GestureSet
 List<GestureSet> BatchProcessContainer.getGestureSets()
          Returns a list of gesture sets.
 

Methods in org.ximtec.igesture.batch with parameters of type GestureSet
 void BatchProcessContainer.addGestureSet(GestureSet set)
          Adds a gesture set.
 void BatchProcess.addGestureSet(GestureSet set)
          Adds a gesture set.
 

Method parameters in org.ximtec.igesture.batch with type arguments of type GestureSet
 void BatchProcess.addGestureSets(List<GestureSet> sets)
          Adds a list of gesture sets.
 

Uses of GestureSet in org.ximtec.igesture.configuration
 

Methods in org.ximtec.igesture.configuration that return GestureSet
 GestureSet Configuration.getGestureSet()
          Returns the combined gesture set.
 

Methods in org.ximtec.igesture.configuration that return types with arguments of type GestureSet
 List<GestureSet> Configuration.getGestureSets()
          Returns the list of gesture sets.
 

Methods in org.ximtec.igesture.configuration with parameters of type GestureSet
 void Configuration.addGestureSet(GestureSet gestureSet)
          Adds a gesture set to the configuration.
 void Configuration.removeGestureSet(GestureSet gestureSet)
          Removes a gesture set from the configuration.
 

Method parameters in org.ximtec.igesture.configuration with type arguments of type GestureSet
 void Configuration.addGestureSets(List<GestureSet> gestureSets)
          Adds a list of gesture sets to the configuration.
 

Uses of GestureSet in org.ximtec.igesture.core
 

Methods in org.ximtec.igesture.core with parameters of type GestureSet
 void Visitor.visit(GestureSet gestureSet)
           
 

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

Methods in org.ximtec.igesture.core.jdom that return GestureSet
static GestureSet JdomGestureSet.unmarshal(org.jdom.Element setElement)
           
 

Constructors in org.ximtec.igesture.core.jdom with parameters of type GestureSet
JdomGestureSet(GestureSet gestureSet)
           
 

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

Methods in org.ximtec.igesture.geco.gui that return GestureSet
 GestureSet MainModel.getGestureSet()
          Returns the gesture set
 

Methods in org.ximtec.igesture.geco.gui with parameters of type GestureSet
 void MainModel.initRecogniser(GestureSet gestureSet)
           
 void MainModel.loadGestureSet(GestureSet gestureSet)
          Adds the gesture set to the gesture main model
 

Uses of GestureSet in org.ximtec.igesture.geco.gui.action
 

Methods in org.ximtec.igesture.geco.gui.action that return GestureSet
 GestureSet LoadGestureSetAction.loadGestureSet(File file)
          Loads the gesture set.
 

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

Methods in org.ximtec.igesture.geco.xml that return GestureSet
 GestureSet XMLImportGeco.getGestureSet()
          Returns the GestureSet saved in the xml
 

Methods in org.ximtec.igesture.geco.xml with parameters of type GestureSet
static void XMLGeco.exportProject(Collection<GestureToActionMapping> mappings, GestureSet gestureSet, String gestureSetFileName, File file)
          Exports a gesture set.
 

Constructors in org.ximtec.igesture.geco.xml with parameters of type GestureSet
JdomGestureMapping(GestureToActionMapping map, GestureSet gestureSet)
           
 

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

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

Uses of GestureSet in org.ximtec.igesture.tool.view
 

Methods in org.ximtec.igesture.tool.view that return types with arguments of type GestureSet
 List<GestureSet> MainModel.getGestureSets()
          Returns a list with all gesture sets.
 

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

Constructors in org.ximtec.igesture.tool.view.admin.panel with parameters of type GestureSet
GestureSetPanel(Controller controller, GestureSet gestureSet)
           
 

Uses of GestureSet in org.ximtec.igesture.tool.view.admin.wrapper
 

Methods in org.ximtec.igesture.tool.view.admin.wrapper that return types with arguments of type GestureSet
 List<GestureSet> GestureSetList.getGestureSets()
           
 

Methods in org.ximtec.igesture.tool.view.admin.wrapper with parameters of type GestureSet
 void GestureSetList.addGestureSet(GestureSet gestureSet)
           
 void GestureSetList.removeGestureSet(GestureSet gestureSet)
           
 

Uses of GestureSet in org.ximtec.igesture.tool.view.batch
 

Methods in org.ximtec.igesture.tool.view.batch that return GestureSet
 GestureSet IBatchView.getGestureSet()
           
 GestureSet BatchView.getGestureSet()
           
 

Uses of GestureSet in org.ximtec.igesture.util
 

Methods in org.ximtec.igesture.util that return GestureSet
static GestureSet GestureTool.combine(List<GestureSet> sets)
          Combines a list of gesture set to one gesture set.
static GestureSet GestureTool.combineSampleData(List<GestureSet> sets)
          Combines samples (SampleDescriptor) from different gesture sets.
static GestureSet XMLTool.importGestureSet(File file)
           
static GestureSet XMLTool.importGestureSet(InputStream inputStream)
          Imports a gesture set.
 

Methods in org.ximtec.igesture.util with parameters of type GestureSet
static TestSet GestureTool.createNoise(GestureSet set)
          Creates a noise test set from the gesture set.
static TestSet GestureTool.createTestSet(GestureSet set)
          Transforms a gesture set into a test set.
static void XMLTool.exportGestureSet(GestureSet set, File file)
          Exports a gesture set.
static InputStream XMLTool.exportGestureSetAsStream(GestureSet set)
          Exports a Gesture Set as Input Stream
static void GestureTool.hasSampleEnoughPoints(GestureSet set, int min)
           
 

Method parameters in org.ximtec.igesture.util with type arguments of type GestureSet
static GestureSet GestureTool.combine(List<GestureSet> sets)
          Combines a list of gesture set to one gesture set.
static GestureSet GestureTool.combineSampleData(List<GestureSet> sets)
          Combines samples (SampleDescriptor) from different gesture sets.
static void XMLTool.exportGestureSet(List<GestureSet> sets, File file)
          Exports a list of gesture sets.
static InputStream XMLTool.exportGestureSetsAsStream(List<GestureSet> sets)
          Exports a list of Gesture Sets as InputStream
 


© 2006-2007 ETH Zurich

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