Organisation profile: Recognition Technologies, Inc.
[ ID = 3632 ] | Reco Technolgies |
Organisation name | Recognition Technologies, Inc. |
Short name or acronym | Reco Technolgies |
Organisation type | Private company |
Activity type | Language or Speech Technology research |
Address | 3616 Edgehill Road |
Postal Code | 10598 |
City | Yorktown Heights |
Country | United States |
Phone | +1 914 997 5676 |
Fax | +1 914 243 4965 |
Email | info_(on)_recotechnologies.com |
Organisation URL | http://www.recognitiontechnologies.com |
Logo | Description |
|
Recogintion Technologies, Inc. located in New York conducts research in the areas of Speaker Recognition (Identification and Verification), Signature Verification, Speech Recognition and Handwriting Recognition (Identification and Verification). An Important product currently available is an easily configurable and customizable Interactive Voice Response (IVR) System which can start working with no extra coding and through a simple configuration file at the design stage. Recognition engines and applications are currently being developed. Recognition Technologies, Inc. accepts proposals from clients in using its recognition technologies and engines. Current development is for the Linux operating system in C++.
|
| Contact |
Name | Dr. Homayoon beigi |
Function | President |
Department | Research and Development |
Email | beigi_(on)_recognitiontechnologies.com |
Phone | +1 914 997 5676 X. 201 |
Fax | +1 914 997 5676 |
Update this profile
|
Last update: 2005-12-27 05:55:51
#!/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"
|
|