|
GECKO 1.0
Human-computer interface based on hand gesture recognition
|
AppLauncher constructor.
{
configFileParser( config_file);
if ( positive_matches.size() == _values_to_track.size() && negative_matches.size() == _values_to_track.size() )
for (int i = 0; i < _values_to_track.size(); i++ )
{
StateMachine newMachine( _values_to_track[i], positive_matches[i], negative_matches[i] );
_state_machines.push_back( newMachine);
}
else
std::cerr << "[AppLauncher] Error: Indices of vectors do not match" << std::endl;
_found = std::vector<bool>( _state_machines.size() );
}
Here is the call graph for this function:
![]() |
1.7.4