void Start()
	{
		dtwGestures = new DtwGestureRecognizer (25, 3, 0);
		Debug.Log ("Reading gestures...");
		dtwGestures.ReadAll (configFolderPath);
		Debug.Log ("Gestures read!");
		ruisInput = (RUISPointTracker2) GetComponent ("RUISPointTracker2");
	}
Esempio n. 2
0
 void Start()
 {
     dtwGestures = new DtwGestureRecognizer(25, 3, 0);
     Debug.Log("Reading gestures...");
     dtwGestures.ReadAll(configFolderPath);
     Debug.Log("Gestures read!");
     ruisInput = (RUISPointTracker2)GetComponent("RUISPointTracker2");
 }
	void Start()
	{
		dtwOG = new DtwGestureRecognizer (10, 3, 0);
		dtwV = new DtwGestureRecognizer (15, 3, 0);
		dtwZ = new DtwGestureRecognizer (10, 3, 0);
		dtwK = new DtwGestureRecognizer (15, 3, 0);
		Debug.Log ("Reading gestures...");
		dtwOG.ReadAll (configFolderPath);
		dtwV.ReadAll (configFolderPath2);
		dtwZ.ReadAll (configFolderPath3);
		dtwK.ReadAll (configFolderPath4);
		Debug.Log ("Gestures read!");
		ruisInput = (RUISPointTracker2) GetComponent ("RUISPointTracker2");
	}
	void Start()
	{
		dtwOG = new DtwGestureRecognizer (distanceTresholdOG, 100, 0);
		dtwV = new DtwGestureRecognizer (distanceTresholdV, 100, 0);
		dtwZ = new DtwGestureRecognizer (distanceTresholdZ, 100, 0);
		dtwK = new DtwGestureRecognizer (distanceTresholdK, 100, 0);
		Debug.Log ("Reading gestures...");
		dtwOG.ReadAll (configFolderPath);
		dtwV.ReadAll (configFolderPath2);
		dtwZ.ReadAll (configFolderPath3);
		dtwK.ReadAll (configFolderPath4);
		Debug.Log ("Gestures read!");
		ruisInput = (RUISPointTracker2) GetComponent ("RUISPointTracker2");
		Debug.Log (ruisInput+"RUISINPUT");
	}