You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It has the ability to recognize a pattern by scanning through multiple recorded gestures for each pattern.
You can improve the detection by giving a pattern a number of draw examples
Looking at the syntax of your recognizer- you can give a pattern only a single example in yours :( .
My question is - is your pattern recognizer based on the same principle?
If not - would it be possible to port it over from one the implementations in my link?
Also can you please add the ability to check more than one drawing example per pattern
The text was updated successfully, but these errors were encountered:
A downside to your method is that the gesture wont get recognised if the user hasnt spawned 8 swipe points - doing the swipe too short will result in it's shape not being recognized
@blurymind the pattern recognition algorithm I have implemented is veeeeeeery simple, and it is based on strategies from the image recognition area.
It would be great to have someone to help me adding a more complex algorithm, more precise and flexible. Right now I don't have the time, didn't have the time a year+ ago when you posted!
Another similar plugin in javascript here:
https://www.scirra.com/forum/plugin-unistroke-gesture-recognizer_t66773
is using this popular method:
http://depts.washington.edu/madlab/proj/dollar/index.html
(link contains implementation in javascript and C#), if you keep scrolling you will find implementations in python
It has the ability to recognize a pattern by scanning through multiple recorded gestures for each pattern.
You can improve the detection by giving a pattern a number of draw examples
Looking at the syntax of your recognizer- you can give a pattern only a single example in yours :( .
My question is - is your pattern recognizer based on the same principle?
If not - would it be possible to port it over from one the implementations in my link?
Also can you please add the ability to check more than one drawing example per pattern
The text was updated successfully, but these errors were encountered: