|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1430 ] | Prof. Georgios Kouroupetroglou |
---|---|
Name | Kouroupetroglou, Prof. Georgios |
Job Title | Professor |
Organisation | Speech Group, University of Athens |
Address | Department of Informatics, Panepistimiopolis, Ilisia |
Postal Code | GR-15784 |
City | Athens |
Country | Greece |
Phone | + +30 2107275305 |
Fax | + +30 2106018677 |
Mobile | + |
koupe_(on)_di.uoa.gr [@ replaced for spam protection] | |
Organisation URL | http://www.di.uoa.gr/speech |
Personal URL | |
Membership | ISCA IEEE, ACM, ISAAC, RESNA |
Languages | English , Greek |
Specialism | Assistive Technology
Development and Implementation of Speech Technology Applications Dialogue systems Digital Speech Processing Hidden Markov Models Information Retrieval Information Services by Telephone using Speech Technologies Interactive Voice Response (IVR) Internet Intonation Knowledge-based Speech Recognition Language Processing Language Resources Large speech corpora Lexical and Terminological Databases Multilinguality Multimodal Dialogue Systems Multimodal Human-Machine Communication Natural Language Processing Prosody Signal Processing Software Architecture for Language Engineering Speech Databases Speech Disorders Speech Recognition Speech Signal Processing Speech Synthesis Speech Technologies Speech Training Aids for Deaf and Hearing Impaired Speech-Enabled IVR Systems Spoken Dialogue Systems Symbolic Speech Synthesis Systems for Older and Disabled People Text-to-Phonetic Representation Text-to-Speech Text-To-Speech Conversion Text-to-Speech in Telephony VoiceXML Web Applications |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2004-05-16 06:29:01 #!/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" |