|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3564 ] | TU Graz |
---|---|
Organisation name | Graz University of Technology |
Short name or acronym | TU Graz |
Organisation type | University |
Activity type | Language or Speech Technology research |
Address | Inffeldgasse 12/4420 |
Postal Code | A-8010 |
City | Graz |
Country | Austria |
Phone | +43 316-8737441 |
Fax | +43 316-8734432 |
Organisation URL | http://www.spsc.tugraz.at |
Logo | Description |
![]() |
TU Graz hosts the Signal Processing and Speech Communication Laboratory which is involved in a wide range of speech research activities, including - nonlinear speech synthesis - auditory modeling for speech coding - perceptual quality of service for interactive real-time communication - variable delay speech transmission for IP telephony - speech watermarking - enhancement of dysphonic speech - robust recognition and speech augmentation for mobile workers - phonetic classification and noise reduction - 3D audio and sonification - multimodal semantic annotation and retrieval with distant talker speech processing - regional varieties in speech recognition - semantic-phonetic reconstruction for dictation - semantic language modeling for conversational speech recognition - information-theoretic methods for spoken-language answering |
Contact | |
Name | Prof. Gernot Kubin |
Function | Lab Director |
Department | Signal Processing and Speech Communication Laboratory |
g.kubin_(on)_ieee.org | |
Phone | +43 316-8734430 |
Fax | +43 316-8734432 |
![]() |
Last update: 2005-08-10 00:59:52 #!/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" |