Uses of Interface
frog.GestureModel

Packages that use GestureModel
frog   
frog.demo   
frog.gui   
 

Uses of GestureModel in frog
 

Classes in frog that implement GestureModel
 class GestureHMM
          GestureHMM is a modeling class that represents a gesture.
 

Fields in frog with type parameters of type GestureModel
(package private) static Vector<GestureModel> ClassifierTestFile.gestureSession
           
 

Methods in frog that return GestureModel
 GestureModel Classifier.classify(Vector<Accel3D> g)
          Classifies a given gesture against the Classifier's set of GestureModels.
 GestureModel Bayesian.classify(Vector<Accel3D> g)
           
 GestureModel Session.newGesture(String name)
          Creates a new gesture and adds it to the current session.
 GestureModel Session.newGesture(String name, byte[] imgBuf)
          Creates a new gesture with a given image and adds it to the current session.
 

Methods in frog that return types with arguments of type GestureModel
 Vector<GestureModel> Session.getGestureSession()
          Returns the gesture session stored by this Session object.
 Vector<GestureModel> Classifier.getModels()
          Returns the set of GestureModels that form this Classifier.
 Vector<GestureModel> Bayesian.getModels()
           
 

Methods in frog with parameters of type GestureModel
 void SessionListener.gestureRecognized(GestureModel g)
          Executed whenever a Session has recognized a gesture performed by the Device it is listening to (requires being in recognition mode).
 void Session.notifyGestureRecognized(GestureModel g)
          Notifies all SessionListeners of a recognition of a gesture g
static void Log.out(GestureModel source, String message)
          Attempts to log data to the text file and/or the JTextArea associated with this Log.
 

Constructor parameters in frog with type arguments of type GestureModel
Bayesian(Vector<GestureModel> m)
          Creates a Bayesian Classifier with the given set of GestureModels.
 

Uses of GestureModel in frog.demo
 

Methods in frog.demo with parameters of type GestureModel
 void Player.gestureRecognized(GestureModel g)
           
 

Uses of GestureModel in frog.gui
 

Methods in frog.gui with parameters of type GestureModel
 void User.gestureRecognized(GestureModel g)
           
 void TrainPanel.gestureRecognized(GestureModel g)
           
 void RecognitionSectionPanel.gestureRecognized(GestureModel g)
           
 void PlayerPanel.gestureRecognized(GestureModel g)
           
 void EvaluationPanel.gestureRecognized(GestureModel g)
           
 

Constructor parameters in frog.gui with type arguments of type GestureModel
EvaluationBarGraphs(Vector<GestureModel> s)
          Constructs an EvaluationBarGraphs pane with the given gesture session.