|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 0921 ] | Department of Computer Science, Gerhard-Mercator-University Duisburg |
|---|---|
| Organisation name | Department of Computer Science, Gerhard-Mercator-University Duisburg |
| Short name or acronym | Department of Computer Science, Gerhard-Mercator-University Duisburg |
| Organisation type | Center |
| Activity type | Speech technology |
| Address | Bismarckstr. 90 |
| Postal Code | D-47057 |
| City | Duisburg |
| Country | Germany |
| Phone | + +49 203 379 1137 |
| Fax | + +49 203 379 4363 |
| Organisation URL | http://www.fb9-ti.uni-duisburg.de/welcome.engl.html |
| Logo | Description |
![]() |
The Department of Computer Science at the Gerhard-Mercator-University Duisburg is conducting research in several fields of Man Machine Communication: speech processing, handwriting recognition, gesture recognition, person and object tracking, other visual communication techniques. They've developed a multilingual TEXT-TO-SPEECH system based on formant synthesis, using the cascade/parallel formant synthesizer designed by Dennis Klatt. The currently active languages are German, American English, and Japanese. |
| Contact | |
| Name | Professor Dr.-Ing. G. Rigoll |
| Function | Chair |
| Department | Department of Computer Science |
| rigoll_(on)_fb9-ti.uni-duisburg.de | |
| Phone | + + 49 203 379 4221 |
| Fax | + |
|
|
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" |