|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0415 ] | Professor Stephen Cox |
---|---|
Name | Cox, Professor Stephen |
Job Title | Professor |
Organisation | University of East Anglia |
Address | School of Computing Sciences, University of East Anglia, |
Postal Code | NR4 7TJ |
City | Norwich |
Country | United Kingdom |
Phone | + 44 1603 592582 |
Fax | + 44 1603 593345 |
Mobile | + |
s.j.cox_(on)_uea.ac.uk [@ replaced for spam protection] | |
Organisation URL | http://www1.uea.ac.uk/cm/home/schools/sci/computing/ |
Personal URL | http://www1.uea.ac.uk/cm/home/schools/sci/computing/People/Faculty/Stephen+Cox |
Membership | ISCA IEEE |
Languages | English |
Specialism | Speech, language and music processing
Specialities: o speaker adaptation o confidence measures in speech recognition o evaluation of recognition algorithms o call-routing technology o language processing for speech synthesis o audio-visual speech o lip-reading o musical genre classification o musical similarity estimation Also interested in speech synthesis and general speech processing |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-27 16:45:43 #!/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" |