?? readme
字號:
CellWriter==========CellWriter is a grid-entry natural handwriting input panel. As you writecharacters into the cells, your writing is instantly recognized at thecharacter level. When you press 'Enter' on the panel, the input you entered issent to the currently focused application as if typed on the keyboard.Please see the website for more information: http://risujin.org/cellwriterMichael Levin <risujin@risujin.org>Reporting bugs==============If you find a bug, please follow this checklist:1.) Check the program website (above) to make sure you are using the latest version and see if your problem is already described under the Support section.2.) Make sure your system is running up-to-date stable versions of the X-server (X11 7.2 at the moment) and supporting libraries. Instabilities in supporting software can cause CellWriter to crash. These issues are further difficult to work around.3.) Please find reliable steps to reproduce the problem. Run CellWriter with the following arguments to produce a log file: $ cellwriter --log-level=7 --log-file=cellwriter.log4.) If you are experiencing crashes and the log file simply says something like "Caught signal 11, cleaning up", it would be very helpful if you could try and find the exact location of the fault with a debugger. You will need to install gdb (the GNU debugger) and compile the latest CellWriter source code (see notes on compiling below). Once you have done so, start gdb from the source directory: $ gdb ./cellwriter Enter 'r' to start the program. Try and reproduce the crash conditions. When the program crashes, gdb will print out the location of the fault in the source code. It looks something like this: GNU gdb 6.6.90.20070912-debian ... (gdb) r Starting program: /home/.../cellwriter-1.2.5/cellwriter ... Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb701d6b0 (LWP 5419)] 0x08050863 in main (argc=1, argv=0xbfda35a4) at src/main.c:694 694 g_print("%s", error->message); (gdb) Save this output and send it to me via email. This is the fastest way to help me fix a crash bug because it's difficult for me to fix crash conditions that don't occur on my computer.5.) Send me an email (address listed above). Please include any relevant information about your computer or handheld device (distribution, Xorg version, Wacom driver version, etc). Don't forget to attach your log file!Notes on compiling==================CellWriter is packaged with Autotools. To compile and install use: ./configure && make && make installIf you are NOT planning to install the software but want to run it from thesource directory, you need to configure CellWriter to use the local datadirectory. When you run the configure script, pass the absolute path to the'share' subdirectory to the script: ./configure --datadir=/home/[user]/.../cellwriter/shareIf you do not do this, CellWriter will not be able to load the tray icon orthe word frequency file.CellWriter has additional compile-time flags. To see what they are, type: ./configure --helpEmbedding in GNOME Screensaver==============================With the 1.3 series, CellWriter can be embedded into GNOME Screensaver. Toenable this functionality you will need to open the GNOME ConfigurationEditor: gconf-editorOpen the GNOME Screensaver entry (/apps/gnome-screensaver/) and set the'embedded_keyboard_command' key to the the CellWriter path and executable namewith the '--xid' and '--keyboard-only' flags appended: /usr/bin/cellwriter --xid --keyboard-onlyCheck the 'embedded_keyboard_enabled' option and CellWriter should beembedded in keyboard-only mode (for security) within GNOME Screensaver nexttime it starts.Currently, CellWriter cannot open the Options dialog or enter training modewhile embedded.Recognition results format==========================If you want to know more about what the recognition engine is doing under thehood, start CellWriter from a console with the debug logging level(cellwriter --log-level=7) and detailed information will be printed to standardout after a character is recognized. Here is some sample output:Recognized -- 71/87 (81%) disqualified, 21ms (1ms/symbol), 37% strong'k' ( 100 [30587], 100 [32722], 69 [21491], 33 [ 17]) 79% [000---012]'K' ( 58 [29191], 38 [32672], 100 [26191], 0 [ 0]) 42% [012---000]'M' ( 77 [29845], 4 [32645], -2 [10154], 0 [ 0]) 16% [000R--012]'P' ( 15 [27757], -12 [32631], 52 [18831], 0 [ 0]) 8% [011--R001]'d' ( 45 [28759], -8 [32634], -23 [ 6823], 0 [ 0]) 2% [000RR-102]The top stat shows how many samples were disqualified before performing detailedrecognition (71). Next is the total time of recognition in milliseconds (21ms).Strength is defined as the match strength of the first result minus the second(79% - 42% = 37% strong).For each letter, the ratings of the four recognition engines are displayed innormalized (0-100) and raw form (in brackets, [0-32767]). From left to right arethe preprocessor, average distance, average angle, and word context engines.After the engine ratings is the post-penalty strength. Lastly is the mappingtransformation in brackets.The mapping transformation describes how the preprocessor mapped a symbol withmore strokes onto a symbol with less strokes. The first set of columns describewhich stroke on the larger symbol was mapped to which stroke on the smallersymbol. The next set of columns indicate whether any stroke was reversed ('R').If any two or more strokes on the larger symbol were mapped to the same strokeon the smaller symbol, the column set on the end indicates the order in whichthe strokes were glued together.In the example above, a sample for the character 'k' was rated highest by thepreprocessor, average distance, and word frequency engines, but onlysecond-highest by the average angle distance. After penalties, it had astrength of 79%, 37% above 'K', and was constructed by gluing together thethree input strokes in order without reversal.Controlling via FIFO====================Since 1.3, CellWriter will watch its FIFO (~/.cellwriter/fifo) for input. Themain window can be controlled by writing one character to the fifo file.To show the main window: $ echo -n S > ~/.cellwriter/fifoTo hide the main window: $ echo -n H > ~/.cellwriter/fifoTo toggle the main window: $ echo -n T > ~/.cellwriter/fifoThanks======Big thanks to Nelson A. de Oliveira for his continuing support!
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -