ESP  0.1
The Example-based Sensor Predictions (ESP) system tries to bring machine learning to the maker community.
user_touche.cpp

Touche example. See documentation on the wiki.

#include <ESP.h>
TcpOStream oStream("localhost", 5204);
GestureRecognitionPipeline pipeline;
void setup()
{
pipeline.setClassifier(SVM(SVM::POLY_KERNEL, SVM::C_SVC, false, true, true, 0.1, 1.0, 0, 0.5, 2));
}