diff options
Diffstat (limited to 'match')
-rw-r--r-- | match/match.c | 31 | ||||
-rw-r--r-- | match/match.h | 21 | ||||
-rw-r--r-- | match/test.c | 21 |
3 files changed, 71 insertions, 2 deletions
diff --git a/match/match.c b/match/match.c index 0080ee6..ebeadcd 100644 --- a/match/match.c +++ b/match/match.c @@ -1,11 +1,38 @@ +/*************************************************************************** + * + * Multitouch X driver + * Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + **************************************************************************/ + #include "match.h" #include <string.h> #include <stdio.h> /** - * MATLAB implementation of the hungarian algorithm (2008) + * Bitmap implementation of the hungarian algorithm (GPL license) + * + * Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se> + * + * Based on code released by Markus Buehren (2004) (BSD license) + * + * Copyright (C) 2004, Markus Buehren. All rights reserved. + * See CREDITS file for full license terms. * - * modified by Henrik Rydberg (2008) */ typedef unsigned short col_t[1]; diff --git a/match/match.h b/match/match.h index 8936de4..61ac72d 100644 --- a/match/match.h +++ b/match/match.h @@ -1,3 +1,24 @@ +/*************************************************************************** + * + * Multitouch X driver + * Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + **************************************************************************/ + #ifndef MATCHER_H #define MATCHER_H diff --git a/match/test.c b/match/test.c index c65e581..e60e19a 100644 --- a/match/test.c +++ b/match/test.c @@ -1,3 +1,24 @@ +/*************************************************************************** + * + * Multitouch X driver + * Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + **************************************************************************/ + #include <stdio.h> #include <time.h> #include "match.c" |