| [ ID = 3218 ] | UEA |
| Organisation name | University of East Anglia |
| Short name or acronym | UEA |
| Organisation type | University |
| Activity type | Speech and Pattern Processing Group, School of Computing Sciences |
| Address | School of Computing Sciences, University of East Anglia, Norwich |
| Postal Code | NR4 7TJ |
| City | Norwich |
| Country | United Kingdom |
| Phone | + +44 1603 592582 |
| Fax | + +44 1603 593345 |
| Email | sjc_(on)_cmp.uea.ac.uk |
| Organisation URL | http://www.sys.uea.ac.uk/people/sjc/ |
| Logo | Description |
 |
The group currently consists of the following faculty members:
Dr Stephen Cox
Dr Ben Milner
Dr Graham Tattersall
plus 2/3 research associates and about 5/7 PhD students
Areas of expertise include:
Speech recognition, especially:
speaker adaptation
confidence measures
speech recognition in noise
speech recognition over IP
Automatic call-routing
Statistical methods in speech synthesis
Audio-visual speech processing
General pattern recognition
|
|
| Contact |
| Name | Dr Stephen Cox |
| Function | Speech and Pattern Processing Group leader |
| Department | School of Computing Sciences, University of East Anglia, Norwich |
| Email | sjc_(on)_cmp.uea.ac.uk |
| Phone | + +44 1603 592582 |
| Fax | + +44 1603 593345 |
Update this profile
|
Last update: 2003-08-09 19:24:35
#!/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"
|