|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2403 ] | Center for Processing Speech and Images (PSI) |
---|---|
Organisation name | Center for Processing Speech and Images (PSI) |
Short name or acronym | Center for Processing Speech and Images (PSI) |
Organisation type | Center |
Activity type | Speech technology |
Address | Kasteelpark Arenberg 10 |
Postal Code | B-3001 |
City | Heverlee |
Country | Belgium |
Phone | + +32 16 32 17 13 |
Fax | + +32 16 32 17 23 |
Organisation URL | http://www.esat.kuleuven.ac.be/psi/ |
Logo | Description |
![]() |
The center for Processing Speech and Images is with 70 people one of the biggest research units within the Electrical Engineering (ESAT) Department. Research covers a large area in the field of audio-visual information processing. The combination of speech and image processing within the same group is an important advantage for the future, which is quite unique within the European context. Our researchers come from different backgrounds: engineers, physicists, mathematicians, linguists,... This multi disciplinarity gives PSI the possibility to couple fundamental innovation with practical solutions in a broad spectrum of applications. The large number of European projects underlines our international reputation. PSI has been a starting point of successful spin-offs and a reliable partner for industry. The subgroup SPEECH works on automatic speech recognition by means of Hidden Markov Models and Neural networks, processing and quality improvement of audio signals in noisy environments, speech corpora for Dutch, speech driven user interfaces and speech coding and speech transformations. |
Contact | |
Name | Prof. Dr. ir. Patrick Wambacq |
Function | Professor |
Department | |
Patrick.Wambacq_(on)_esat.kuleuven.ac.be | |
Phone | + +32 16 32 1057 |
Fax | + +32 16 32 1723 |
![]() |
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" |