Uses of Class
frog.KmeansParameters

Packages that use KmeansParameters
frog   
 

Uses of KmeansParameters in frog
 

Methods in frog with parameters of type KmeansParameters
 boolean GestureHMM.train(GestureHMMParameters gParams, KmeansParameters kParams)
          Trains the GestureHMM with a specified set of training parameters as well as a specified set of quantizer parameters.
 boolean Session.train(int index, GestureHMMParameters gParams, KmeansParameters kParams)
          Trains the GestureHMM at the given index in the current gesture session with the specified parameters.
 boolean GestureHMM.train(KmeansParameters params)
          Trains the GestureHMM with a specified set of quantizer parameters.
 

Constructors in frog with parameters of type KmeansParameters
GestureHMM(String n, GestureHMMParameters gParams, KmeansParameters kParams)
          Constructs a GestureHMM with a name, training parameters, and quantizer parameters (Kmeans in particular).
GestureHMM(String n, GestureHMMParameters gParams, KmeansParameters kParams, byte[] iconBuf)
          Constructs a GestureHMM with a name, training parameters, a gesture set, and an image.
GestureHMM(String n, GestureHMMParameters gParams, KmeansParameters kParams, Vector<Vector<Accel3D>> instances)
          Constructs a GestureHMM with a name, training parameters, quantizer parameters (Kmeans in particular), and a training set.
GestureHMM(String n, GestureHMMParameters gParams, KmeansParameters kParams, Vector<Vector<Accel3D>> instances, byte[] iconBuf)
          Constructs a GestureHMM with a name, training parameters, a gesture set, and an image.
Kmeans(KmeansParameters params, Vector<Accel3D> in)
          Constructs a Kmeans quantizer with a given set of k-means parameters and a 3D acceleration data set.