| 
    GECKO 1.0 
   Human-computer interface based on hand gesture recognition 
   | 
 
 StateMachine constructor. 
 {
    this->value_to_track = value_to_track;
    this->min_positive_matches = positive_matches;
    this->max_negative_matches = negative_matches;
    current_positive_matches = 0;
    current_negative_matches = 0;
    found = false;
}
 | 
  
 1.7.4