-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGLGestureRecognizer.m
262 lines (240 loc) · 7.97 KB
/
GLGestureRecognizer.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
//
// GLGestureRecognizer.m
//
// Created by Adam Preble on 4/28/09. [email protected]
//
// Largely an implementation of the $1 Unistroke Recognizer:
// http://depts.washington.edu/aimgroup/proj/dollar/
// Jacob O. Wobbrock, Andrew D. Wilson, Yang Li
//
#import "GLGestureRecognizer.h"
#define kSamplePoints (16)
// Utility/Math Functions:
CGPoint Centroid(CGPoint *samples, int samplePoints);
void Translate(CGPoint *samples, int samplePoints, float x, float y);
void Rotate(CGPoint *samples, int samplePoints, float radians);
void Scale(CGPoint *samples, int samplePoints, float xScale, float yScale);
float Distance(CGPoint p1, CGPoint p2);
float PathDistance(CGPoint *pts1, CGPoint *pts2, int count);
float DistanceAtAngle(CGPoint *samples, int samplePoints, CGPoint *template, float theta);
float DistanceAtBestAngle(CGPoint *samples, int samplePoints, CGPoint *template);
@interface GLGestureRecognizer () {
NSMutableArray *touchPoints;
NSMutableArray *resampledPoints;
NSDictionary *templates;
}
@property (nonatomic, readwrite) NSArray *touchPoints;
@property (nonatomic, readwrite) NSArray *resampledPoints;
@end
@implementation GLGestureRecognizer
@synthesize templates, resampledPoints, touchPoints;
- (id)init
{
if (self = [super init])
{
self.touchPoints = [NSMutableArray array];
self.templates = [NSDictionary dictionary];
self.resampledPoints = [NSMutableArray array];
}
return self;
}
- (void)addTouches:(NSSet*)set fromView:(UIView *)view
{
[self addTouchAtPoint:[[set anyObject] locationInView:view]];
}
- (void)addTouchAtPoint:(CGPoint)point
{
[touchPoints addObject:[NSValue valueWithCGPoint:point]];
}
- (void)resetTouches
{
self.touchPoints = [NSMutableArray array];
}
- (NSString *)findBestMatch
{
return [self findBestMatchCenter:NULL angle:NULL score:NULL];
}
- (NSString *)findBestMatchCenter:(CGPoint*)outCenter angle:(float*)outRadians score:(float*)outScore
{
@autoreleasepool {
// Adapted from description on: http://depts.washington.edu/aimgroup/proj/dollar/ / http://blog.makezine.com/archive/2008/11/gesture_recognition_for_javasc.html
// 1. Resampling the recorded path into a fixed number of points that are evenly spaced along the path
// 2. Rotate the path so that the first point is directly to the right of the path's center of mass
// 3. Scaling the path (non-uniformly) to a fixed height and width
// 4. For each reference path, calculating the average distance for the corresponding points in the input path. The path with the lowest average point distance is the match.
int i;
const int samplePoints = kSamplePoints;
CGPoint samples[samplePoints];
int c = [[self touchPoints] count];
// Load up the samples. We use a very simplistic method for this; the JavaScript version is much more sophisticated.
for (i = 0; i < samplePoints; i++)
{
samples[i] = [[[self touchPoints] objectAtIndex:MAX(0, (c-1)*i/(samplePoints-1))] CGPointValue];
}
CGPoint center = Centroid(samples, samplePoints);
if (outCenter)
*outCenter = center;
Translate(samples, samplePoints, -center.x, -center.y); // Recenter
// Now rotate the path around 0,0, since the points have been transformed to that point.
// Find the angle of the first point:
CGPoint firstPoint = samples[0];
float firstPointAngle = atan2(firstPoint.y, firstPoint.x);
NSLog(@"firstPointAngle=%0.2f", firstPointAngle*360.0f/(2.0f*M_PI));
if (outRadians)
*outRadians = firstPointAngle;
Rotate(samples, samplePoints, -firstPointAngle);
CGPoint lowerLeft, upperRight; // For finding the boundaries of the gesture
for (i = 0; i < samplePoints; i++)
{
CGPoint pt = samples[i];
if (pt.x < lowerLeft.x)
lowerLeft.x = pt.x;
if (pt.y < lowerLeft.y)
lowerLeft.y = pt.y;
if (pt.x > upperRight.x)
upperRight.x = pt.x;
if (pt.y > upperRight.y)
upperRight.y = pt.y;
}
float scale = 2.0f/MAX(upperRight.x - lowerLeft.x, upperRight.y - lowerLeft.y);
Scale(samples, samplePoints, scale, scale);
center = Centroid(samples, samplePoints);
Translate(samples, samplePoints, -center.x, -center.y); // Recenter
// Now we can compare the samples against our known samples:
NSString *bestTemplateName = nil;
float best = INFINITY;
for (NSString *templateName in [templates allKeys])
{
NSArray *templateSamples = [templates objectForKey:templateName];
CGPoint template[samplePoints];
NSAssert(samplePoints == [templateSamples count], @"Template size mismatch");
for (i = 0; i < samplePoints; i++)
{
template[i] = [[templateSamples objectAtIndex:i] CGPointValue];
}
float score = DistanceAtBestAngle(samples, samplePoints, template);
NSLog(@" %@ => %0.2f", templateName, score);
if (score < best)
{
bestTemplateName = [NSString stringWithString:templateName];
best = score;
}
}
NSLog(@"Best: %@ with %0.2f", bestTemplateName, best);
if (outScore)
*outScore = best;
self.resampledPoints = [NSMutableArray arrayWithCapacity:samplePoints];
for (i = 0; i < samplePoints; i++)
{
CGPoint pt = samples[i];
[resampledPoints addObject:[NSValue valueWithCGPoint:pt]];
}
// Serialize the samples as JSON:
#ifndef NDEBUG
NSMutableString *string = [NSMutableString stringWithString:@"\"template_name\": [ "];
for (i = 0; i < samplePoints; i++)
{
CGPoint pt = samples[i];
[string appendFormat:@"[%0.2f, %0.2f], ", pt.x, pt.y];
}
[string appendString:@"],\n"];
NSLog(@"Read:\n%@", string);
#endif
return bestTemplateName;
}
}
@end
CGPoint Centroid(CGPoint *samples, int samplePoints)
{
CGPoint center = CGPointZero;
for (int i = 0; i < samplePoints; i++)
{
CGPoint pt = samples[i];
center.x += pt.x;
center.y += pt.y;
}
center.x /= samplePoints;
center.y /= samplePoints;
return center;
}
void Translate(CGPoint *samples, int samplePoints, float x, float y)
{
for (int i = 0; i < samplePoints; i++)
{
CGPoint pt = samples[i];
samples[i] = CGPointMake(pt.x+x, pt.y+y);
}
}
void Rotate(CGPoint *samples, int samplePoints, float radians)
{
CGAffineTransform rotateTransform = CGAffineTransformMakeRotation(radians);
for (int i = 0; i < samplePoints; i++)
{
CGPoint pt0 = samples[i];
CGPoint pt = CGPointApplyAffineTransform(pt0, rotateTransform);
samples[i] = pt;
}
}
void Scale(CGPoint *samples, int samplePoints, float xScale, float yScale)
{
CGAffineTransform scaleTransform = CGAffineTransformMakeScale(xScale, yScale); //1.0f/(upperRight.x - lowerLeft.x), 1.0f/(upperRight.y - lowerLeft.y));
for (int i = 0; i < samplePoints; i++)
{
CGPoint pt0 = samples[i];
CGPoint pt = CGPointApplyAffineTransform(pt0, scaleTransform);
samples[i] = pt;
}
}
float Distance(CGPoint p1, CGPoint p2)
{
float dx = p2.x - p1.x;
float dy = p2.y - p1.y;
return sqrtf(dx * dx + dy * dy);
}
float PathDistance(CGPoint *pts1, CGPoint *pts2, int count)
{
float d = 0.0;
for (int i = 0; i < count; i++) // assumes pts1.length == pts2.length
d += Distance(pts1[i], pts2[i]);
return d / (float)count;
}
float DistanceAtAngle(CGPoint *samples, int samplePoints, CGPoint *template, float theta)
{
const int maxPoints = 128;
CGPoint newPoints[maxPoints];
assert(samplePoints <= maxPoints);
memcpy(newPoints, samples, sizeof(CGPoint)*samplePoints);
Rotate(newPoints, samplePoints, theta);
return PathDistance(newPoints, template, samplePoints);
}
float DistanceAtBestAngle(CGPoint *samples, int samplePoints, CGPoint *template)
{
float a = -0.25f*M_PI;
float b = -a;
float threshold = 0.1f;
float Phi = 0.5 * (-1.0 + sqrtf(5.0)); // Golden Ratio
float x1 = Phi * a + (1.0 - Phi) * b;
float f1 = DistanceAtAngle(samples, samplePoints, template, x1);
float x2 = (1.0 - Phi) * a + Phi * b;
float f2 = DistanceAtAngle(samples, samplePoints, template, x2);
while (fabs(b - a) > threshold)
{
if (f1 < f2)
{
b = x2;
x2 = x1;
f2 = f1;
x1 = Phi * a + (1.0 - Phi) * b;
f1 = DistanceAtAngle(samples, samplePoints, template, x1);
}
else
{
a = x1;
x1 = x2;
f1 = f2;
x2 = (1.0 - Phi) * a + Phi * b;
f2 = DistanceAtAngle(samples, samplePoints, template, x2);
}
}
return MIN(f1, f2);
}