summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-11-07 18:04:46 +0100
committerHenrik Rydberg <rydberg@euromail.se>2010-11-07 18:04:46 +0100
commit67fdae132708889ed89e302bd63a5cb91b2c75a7 (patch)
tree29e6b2989ab5180eece929ad7a12def515e24259 /src
parent868f53c8a5684524bc6b1e7cd39aabed56fad9df (diff)
Add and test a simple kernel matcher
This matcher is for up to four fingers, and has these properties: * Approximately 1.4 times faster at 4 fingers * Approximately 4.0 times faster at 2 fingers * Roughly 100 lines of code Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am3
-rw-r--r--src/match.h8
-rw-r--r--src/match_four.c129
3 files changed, 139 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 33677c0..1c22c33 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -13,7 +13,8 @@ libmtdev_la_SOURCES = \
13 caps.c \ 13 caps.c \
14 core.c \ 14 core.c \
15 iobuf.c \ 15 iobuf.c \
16 match.c 16 match.c \
17 match_four.c
17 18
18AM_CFLAGS = $(CWARNFLAGS) 19AM_CFLAGS = $(CWARNFLAGS)
19 20
diff --git a/src/match.h b/src/match.h
index 98e1fa5..efba6f5 100644
--- a/src/match.h
+++ b/src/match.h
@@ -40,4 +40,12 @@
40void mtdev_match(int index[DIM_FINGER], int A[DIM2_FINGER], 40void mtdev_match(int index[DIM_FINGER], int A[DIM2_FINGER],
41 int nrow, int ncol); 41 int nrow, int ncol);
42 42
43struct trk_coord {
44 int x;
45 int y;
46};
47
48const unsigned char *mtdev_match_four(const struct trk_coord *old, int nslot,
49 const struct trk_coord *pos, int npos);
50
43#endif 51#endif
diff --git a/src/match_four.c b/src/match_four.c
new file mode 100644
index 0000000..c7d2cd3
--- /dev/null
+++ b/src/match_four.c
@@ -0,0 +1,129 @@
1#include "match.h"
2#include <limits.h>
3
4typedef unsigned char u8;
5typedef unsigned int u32;
6
7/* generated by mtdev-kernel - do not edit */
8static const u8 match_data[] = {
9 0, 0, 1, 0, 1, 2, 0, 1, 2, 3, 0, 0, 0, 0, 1, 1,
10 1, 0, 0, 0, 1, 2, 1, 1, 0, 2, 2, 1, 2, 0, 0, 0,
11 1, 2, 3, 1, 1, 0, 2, 3, 2, 1, 2, 0, 3, 3, 1, 2,
12 3, 0, 0, 0, 1, 1, 1, 2, 1, 0, 0, 3, 0, 1, 1, 3,
13 1, 0, 2, 2, 3, 1, 2, 0, 0, 4, 0, 1, 2, 2, 4, 2,
14 1, 0, 0, 5, 0, 2, 1, 1, 5, 2, 0, 1, 1, 4, 1, 0,
15 2, 3, 2, 4, 1, 2, 0, 3, 3, 4, 1, 2, 3, 0, 0, 5,
16 0, 1, 2, 3, 2, 5, 2, 1, 0, 3, 3, 5, 2, 1, 3, 0,
17 0, 6, 0, 2, 1, 3, 1, 6, 2, 0, 1, 3, 3, 6, 2, 3,
18 1, 0, 0, 7, 0, 2, 3, 1, 1, 7, 2, 0, 3, 1, 2, 7,
19 2, 3, 0, 1, 0, 0, 1, 1, 2, 2, 1, 2, 1, 0, 0, 3,
20 0, 1, 1, 4, 2, 0, 3, 4, 2, 1, 0, 5, 0, 2, 2, 5,
21 1, 2, 2, 4, 6, 2, 1, 0, 1, 5, 6, 2, 0, 1, 2, 3,
22 7, 1, 2, 0, 0, 5, 7, 0, 2, 1, 1, 3, 8, 1, 0, 2,
23 0, 4, 8, 0, 1, 2, 2, 5, 8, 2, 1, 0, 3, 3, 5, 8,
24 2, 1, 3, 0, 1, 6, 8, 2, 0, 1, 3, 3, 6, 8, 2, 3,
25 1, 0, 1, 7, 8, 2, 0, 3, 1, 2, 7, 8, 2, 3, 0, 1,
26 2, 4, 9, 1, 2, 0, 3, 3, 4, 9, 1, 2, 3, 0, 0, 6,
27 9, 0, 2, 1, 3, 3, 6, 9, 3, 2, 1, 0, 0, 7, 9, 0,
28 2, 3, 1, 2, 7, 9, 3, 2, 0, 1, 1, 4, 10, 1, 0, 2,
29 3, 3, 4, 10, 1, 3, 2, 0, 0, 5, 10, 0, 1, 2, 3, 3,
30 5, 10, 3, 1, 2, 0, 0, 7, 10, 0, 3, 2, 1, 1, 7, 10,
31 3, 0, 2, 1, 1, 4, 11, 1, 0, 3, 2, 2, 4, 11, 1, 3,
32 0, 2, 0, 5, 11, 0, 1, 3, 2, 2, 5, 11, 3, 1, 0, 2,
33 0, 6, 11, 0, 3, 1, 2, 1, 6, 11, 3, 0, 1, 2, 0, 0,
34 1, 1, 2, 2, 3, 3, 1, 2, 1, 0, 0, 3, 0, 1, 1, 4,
35 2, 0, 3, 4, 2, 1, 0, 5, 0, 2, 2, 5, 1, 2, 1, 6,
36 3, 0, 3, 6, 3, 1, 5, 6, 3, 2, 0, 7, 0, 3, 2, 7,
37 1, 3, 4, 7, 2, 3, 2, 4, 6, 2, 1, 0, 1, 5, 6, 2,
38 0, 1, 2, 3, 7, 1, 2, 0, 0, 5, 7, 0, 2, 1, 1, 3,
39 8, 1, 0, 2, 0, 4, 8, 0, 1, 2, 2, 4, 9, 3, 1, 0,
40 1, 5, 9, 3, 0, 1, 2, 7, 9, 3, 2, 0, 5, 7, 9, 3,
41 2, 1, 1, 8, 9, 3, 0, 2, 4, 8, 9, 3, 1, 2, 2, 3,
42 10, 1, 3, 0, 0, 5, 10, 0, 3, 1, 2, 6, 10, 2, 3, 0,
43 5, 6, 10, 2, 3, 1, 0, 8, 10, 0, 3, 2, 3, 8, 10, 1,
44 3, 2, 1, 3, 11, 1, 0, 3, 0, 4, 11, 0, 1, 3, 1, 6,
45 11, 2, 0, 3, 4, 6, 11, 2, 1, 3, 0, 7, 11, 0, 2, 3,
46 3, 7, 11, 1, 2, 3, 3, 6, 9, 12, 3, 2, 1, 0, 2, 7,
47 9, 12, 3, 2, 0, 1, 3, 5, 10, 12, 3, 1, 2, 0, 1, 7,
48 10, 12, 3, 0, 2, 1, 2, 5, 11, 12, 3, 1, 0, 2, 1, 6,
49 11, 12, 3, 0, 1, 2, 3, 6, 8, 13, 2, 3, 1, 0, 2, 7,
50 8, 13, 2, 3, 0, 1, 3, 4, 10, 13, 1, 3, 2, 0, 0, 7,
51 10, 13, 0, 3, 2, 1, 2, 4, 11, 13, 1, 3, 0, 2, 0, 6,
52 11, 13, 0, 3, 1, 2, 3, 5, 8, 14, 2, 1, 3, 0, 1, 7,
53 8, 14, 2, 0, 3, 1, 3, 4, 9, 14, 1, 2, 3, 0, 0, 7,
54 9, 14, 0, 2, 3, 1, 1, 4, 11, 14, 1, 0, 3, 2, 0, 5,
55 11, 14, 0, 1, 3, 2, 2, 5, 8, 15, 2, 1, 0, 3, 1, 6,
56 8, 15, 2, 0, 1, 3, 2, 4, 9, 15, 1, 2, 0, 3, 0, 6,
57 9, 15, 0, 2, 1, 3, 1, 4, 10, 15, 1, 0, 2, 3, 0, 5,
58 10, 15, 0, 1, 2, 3,
59};
60
61/* generated by mtdev-kernel - do not edit */
62static const int match_index[][5] = {
63 { 0, 0, 1, 3, 6 },
64 { 10, 10, 12, 18, 30 },
65 { 50, 50, 54, 62, 92 },
66 { 164, 164, 170, 194, 230 },
67 { 398, 398, 406, 454, 598 },
68 { 790 }
69};
70
71static void set_dist(u32 *dist,
72 const struct trk_coord *b1, const struct trk_coord *e1,
73 const struct trk_coord *b2, const struct trk_coord *e2)
74{
75 const struct trk_coord *p, *q;
76
77 for (p = b1; p != e1; p++)
78 for (q = b2; q != e2; q++)
79 *dist++ = abs(q->x - p->x) + abs(q->y - p->y);
80}
81
82const u8 *mtdev_match_four(const struct trk_coord *old, int nslot,
83 const struct trk_coord *pos, int npos)
84{
85 u32 d[16], obj, t;
86 const u8 *p, *b, *e;
87 const int *at;
88
89 set_dist(d, old, old + nslot, pos, pos + npos);
90
91 at = &match_index[nslot][npos];
92 b = &match_data[at[0]];
93 e = &match_data[at[1]];
94
95 obj = UINT_MAX, p = b;
96
97 switch (minval(nslot, npos)) {
98 case 1:
99 for (; b != e; b += npos) {
100 t = d[*b++];
101 if (t < obj)
102 obj = t, p = b;
103 }
104 break;
105 case 2:
106 for (; b != e; b += npos) {
107 t = d[*b++], t += d[*b++];
108 if (t < obj)
109 obj = t, p = b;
110 }
111 break;
112 case 3:
113 for (; b != e; b += npos) {
114 t = d[*b++], t += d[*b++], t += d[*b++];
115 if (t < obj)
116 obj = t, p = b;
117 }
118 break;
119 case 4:
120 for (; b != e; b += npos) {
121 t = d[*b++], t += d[*b++], t += d[*b++], t += d[*b++];
122 if (t < obj)
123 obj = t, p = b;
124 }
125 break;
126 }
127
128 return p;
129}