sigus.core
Interface SigusApp

All Known Implementing Classes:
LibrasEditor_, TicTacToe_

public interface SigusApp

All applications that reads the input from a webcam and use SIGUS-weka integration module for learning should implement the SigusApp interface


Method Summary
 boolean getCalibrating()
          True if application is in calibration mode (e.g.: collecting samples from face or hand skin), false otherwise.
 void init()
           
 void process(int n)
          Process a visual recognized input, like a hand sign or an eye gaze.
 void setGeneralTitle(java.lang.String title)
          Set window title
 void setImageProcessor(ij.process.ImageProcessor i)
          Set the ImageProcessor where Digital Image Processing will occurr (that window showing the segmented image)
 void setTitlePlaying()
          Indicate, with the word "playing" in the window title, that the application is NOT in learning mode (webcam interaction has begun)
 void setUpdater(Updater u)
          Set the class that will collect training samples and save them to an arff (weka) file.
 

Method Detail

init

public void init()

setGeneralTitle

public void setGeneralTitle(java.lang.String title)
Set window title


setTitlePlaying

public void setTitlePlaying()
Indicate, with the word "playing" in the window title, that the application is NOT in learning mode (webcam interaction has begun)


process

public void process(int n)
Process a visual recognized input, like a hand sign or an eye gaze.

Parameters:
n - - an integer associated to each different vision sign

setUpdater

public void setUpdater(Updater u)
Set the class that will collect training samples and save them to an arff (weka) file.


setImageProcessor

public void setImageProcessor(ij.process.ImageProcessor i)
Set the ImageProcessor where Digital Image Processing will occurr (that window showing the segmented image)


getCalibrating

public boolean getCalibrating()
True if application is in calibration mode (e.g.: collecting samples from face or hand skin), false otherwise.