Organisation profile: Speech, Vision and Robotics (SVR) Group, University of Cambridge
[ ID = 1313 ] | Speech, Vision and Robotics (SVR) Group, University of Cambridge |
Organisation name | Speech, Vision and Robotics (SVR) Group, University of Cambridge |
Short name or acronym | Speech, Vision and Robotics (SVR) Group, University of Cambridge |
Organisation type | Center |
Activity type | Speech technology |
Address | Trumpington St. |
Postal Code | CB2 1PZ |
City | Cambridge |
Country | United Kingdom |
Phone | + |
Fax | + +44 1223 332 662 |
Email | |
Organisation URL | http://svr-www.eng.cam.ac.uk/ |
Logo | Description |
 |
The Speech, Vision and Robotics (SVR) Group
was founded by the late Professor Frank Fallside in the early 1970's
when the main interests were in speech processing and control
applications.
The principle areas of interest are amongst others speech recognition
using both neural networks and hidden Markov Models. This includes
large vocabulary recognition, recognition in noise, speaker adaptation
and word spotting.
|
| Contact |
Name | |
Function | |
Department | |
Email | |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2002-04-10 12:32:58
#!/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"
|
|