9aa00c080a
Zinnia is a simple, customizable and portable online hand recognition system based on Support Vector Machines. Zinnia simply receives user pen strokes as a sequence of coordinate data and outputs n-best characters sorted by SVM confidence. To keep portability, Zinnia doesn't have any rendering functionality. In addition to recognition, Zinnia provides training module that allows us to create any hand-written recognition systems with low-cost.
17 lines
347 B
Makefile
17 lines
347 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2010/05/20 09:05:30 obache Exp $
|
|
#
|
|
|
|
.include "Makefile.common"
|
|
|
|
COMMENT= Online hand writing recognition system with machine learning
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
USE_LANGUAGES= c c++
|
|
|
|
PKGCONFIG_OVERRIDE+= zinnia.pc.in
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|