Ubuntu手写汉字识别程序

笔记本/便携移动设备,手机平板等软硬件
wxmlwy
帖子: 9
注册时间: 2008-03-31 23:39

Ubuntu手写汉字识别程序

#1

帖子 wxmlwy » 2009-04-01 23:15

我的笔记本是HP的TC1100 TablePC,用的是电磁感应笔,笔可以在屏幕上直接操作电脑。在笔记本上装上了Vista,感觉Vista的TablePC非常好用。手写识别很高,并且还有笔锋,比TablePC的windows XP要好很多。后来安装了ubuntu 8.10,安装wacom驱动后,手写笔可以操作电脑了,但是手写识别就一直找不到好的,只好装上CellWriter。那个难用啊,痛苦。今天终于在我的TC1100上实现了汉王手写,在汉字手写识别还是汉王的技术好,识别率高。费话少说上菜。
1.安装wacom TC1100的屏幕手写驱动是wacom的
在驱动新立得软件管理器搜“wacom-tools",然后安装。
2.配置xorg.conf文件。这一步完成之后,安装上CompizConfig Settings Manager,就很容易网上一段视频里的“手写笔划出火焰“了。
终端里执行
sudo gedit /etc/X11/xorg.conf
复制以下内容替换原有内容,保存
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom" # USB ONLY?
# Option "Device" "/dev/ttyS0" # SERIAL ONLY
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
Option "USB" "on" # USB ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom" # USB ONLY?
# Option "Device" "/dev/ttyS0" # SERIAL ONLY
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
Option "USB" "on" # USB ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom" # USB ONLY?
# Option "Device" "/dev/ttyS0" # SERIAL ONLY
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
Option "USB" "on" # USB ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "pad"
Option "Device" "/dev/input/wacom" # USB ONLY
# Option "Device" "/dev/ttyS0" # SERIAL ONLY
Option "Type" "pad"
Option "USB" "on" # USB ONLY
EndSection

Section "Device"
Identifier "Configured Video Device"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "stylus" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents" # For non-LCD tablets only
InputDevice "pad" # For Intuos3/CintiqV5/Graphire4/Bamboo tablets
# InputDevice "touch" "SendCoreEvents" # Only a few TabletPCs support this type
EndSection

3.安装手写程序
解压下载的MID.tar.gz,
在终端里进入MID目录。
cd /MID
复制tmp目录到/usr/local目录
sudo cp -r tmp /usr/local
更改tmp目录权限
sudo chmod 777 /usr/local/tmp
复制libHWRE_MLH_CHS.so文件到/lib目录
sudo cp libHWRE_MLH_CHS.so /lib
更改tmp目录权限
sudo chmod 777 /lib/libHWRE_MLH_CHS.so
复制hanwang.png文件到/usr/share/scim/icons目录
sudo cp hanwang.png /usr/share/scim/icons
安装scim-shouxie_0.4-2_i386.deb
重启就行了。
虽然识别率较高,但是是全屏手写,所以控制很麻烦。
手写安装程序下载地址:(对不起大家了,下载地址重放)。
http://wxmlwy.w9.dh52.com/MID.tar.gz
图抓得不好,用的是毛笔笔头书写的。
附件
3.png
2.png
上次由 wxmlwy 在 2009-04-14 21:20,总共编辑 6 次。
头像
eexpress
帖子: 58428
注册时间: 2005-08-14 21:55
来自: 长沙

Re: TablePC上的手写程序

#2

帖子 eexpress » 2009-04-02 9:01

goood。 下次有机会试试。
可以截图看你的书写效果不。
● 鸣学
头像
john.wu
帖子: 1006
注册时间: 2007-10-18 17:40

Re: TablePC上的手写程序

#3

帖子 john.wu » 2009-04-02 10:51

good

千帖户,享有论坛特权!
头像
planwolf
帖子: 721
注册时间: 2008-08-22 10:47
来自: dg

Re: TablePC上的手写程序

#4

帖子 planwolf » 2009-04-03 11:25

期待图
dhx
帖子: 18
注册时间: 2008-10-26 14:10

Re: Ubuntu手写汉字识别程序

#5

帖子 dhx » 2009-04-10 11:47

楼主太厉害啦,我的U60应该可以用上手写啦

我已经比人耻笑多时,用触摸屏,打键盘。 :em06
头像
wangdu2002
帖子: 13284
注册时间: 2008-12-13 19:39
来自: 物华天宝人杰地灵

Re: Ubuntu手写汉字识别程序

#6

帖子 wangdu2002 » 2009-04-10 11:57

:em09
行到水穷处,坐看云起时。
海内生明月,天涯共此夕。
--------------------吾本独!
769011
帖子: 11
注册时间: 2008-09-24 17:03

Re: Ubuntu手写汉字识别程序

#7

帖子 769011 » 2009-04-11 16:56

请问一下,我驱动 总算装好了,谢谢
但是 你的 第三步,我好像找不到MID这个目录
这个要下载吗 ?在那里
头像
daf3707
论坛版主
帖子: 12731
注册时间: 2007-06-13 15:57
来自: 在他乡

Re: Ubuntu手写汉字识别程序

#8

帖子 daf3707 » 2009-04-11 17:02

769011 写了:请问一下,我驱动 总算装好了,谢谢
但是 你的 第三步,我好像找不到MID这个目录
这个要下载吗 ?在那里
第3步不是有个附件吗?解压,然后进去
769011
帖子: 11
注册时间: 2008-09-24 17:03

Re: Ubuntu手写汉字识别程序

#9

帖子 769011 » 2009-04-11 20:24

daf3707 写了:
769011 写了:请问一下,我驱动 总算装好了,谢谢
但是 你的 第三步,我好像找不到MID这个目录
这个要下载吗 ?在那里
第3步不是有个附件吗?解压,然后进去
附件 在那里阿,他的地址没有写 阿
biabiapiapia
帖子: 2
注册时间: 2006-11-16 3:32

Re: Ubuntu手写汉字识别程序

#10

帖子 biabiapiapia » 2009-04-13 4:00

怎么看不到你说的手写程序下载地址?
769011
帖子: 11
注册时间: 2008-09-24 17:03

Re: Ubuntu手写汉字识别程序

#11

帖子 769011 » 2009-04-18 8:22

biabiapiapia 写了:怎么看不到你说的手写程序下载地址?
就是看不到阿 ,才想要知道阿
头像
daf3707
论坛版主
帖子: 12731
注册时间: 2007-06-13 15:57
来自: 在他乡

Re: Ubuntu手写汉字识别程序

#12

帖子 daf3707 » 2009-04-18 8:29

头像
大宝
帖子: 3050
注册时间: 2008-06-30 22:32
联系:

Re: Ubuntu手写汉字识别程序

#13

帖子 大宝 » 2009-04-20 12:36

强大得太过分了~!
丁页~
NetSnail
帖子: 22
注册时间: 2005-12-20 9:27

Re: Ubuntu手写汉字识别程序

#14

帖子 NetSnail » 2009-04-21 14:48

有没有版权问题呢?

我在汉王的官网上也没看到这个软件的消息呢。
头像
lerosua
论坛版主
帖子: 8455
注册时间: 2007-11-29 9:41
联系:

Re: Ubuntu手写汉字识别程序

#15

帖子 lerosua » 2009-04-21 14:58

楼上这么多有触摸屏的啊?
回复