|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3658 ] | Vision Objects |
---|---|
Organisation name | Vision Objects |
Short name or acronym | Vision Objects |
Organisation type | Private company |
Activity type | Other expertise relevant for Language or Speech Technology |
Address | 2, allée des Vieux Tilleuls |
Postal Code | 44301 |
City | Nantes Cedex 3 |
Country | France |
Phone | +0033 (0)2 28 01 49 50 |
Fax | + |
websales_(on)_visionobjects.com | |
Organisation URL | http://www.visionobjects.com |
Logo | Description |
![]() |
Vision Objects provides the industry standard in Handwriting Recognition. Vision Objects ground-breaking MyScript Technology reliably recognizes and converts handwriting into smart, valuable and searchable digital information. MyScript is available in many Western and Asian languages. MyScript is integrated into many existing systems for high level form processing, personal information management, messaging and edutainment applications. Vision Objects mission is to develop and market accurate and high performance Handwriting Recognition & Understanding software for any platform using handwritten data entry through pen-based user interfaces such as Digital Pens, PDAs, Tablet PCs and Smartphones. |
Contact | |
Name | Mr David Bouchon |
Function | Marketing Manager |
Department | Marketing - Handwriting Recognition |
david.bouchon_(on)_visionobjects.com | |
Phone | +0033 (0)2 28 01 49 50 |
Fax | + |
![]() |
Last update: 2006-04-06 10:28:54 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |