How to get gesture IDs
- by Colin Gough
Is there anyway to get a list of gesture ids, from the gesture library that has been created using gesturebuilder.
I want to link each gesture to an images, so some sort of an id or name is needed. I have looked at the samples and other online material avaialbe for gestures, and there is no information on this matter.
Any help in this matter would be appreciated.
Example:
if (predictions.size() > 0)
{
Prediction prediction = predictions.get(0);
if (prediction.score > 1.0)
{
if(prediction.best_score == Current_Image)
{
Correct();
Next_image();
}
}
}