|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1228 ] | Dr MARIA RANGOUSSI |
---|---|
Name | RANGOUSSI, Dr MARIA |
Job Title | PROFESSOR |
Organisation | TECHNOLOGICAL EDUCATION INSTITUTE OF PIRAEUS |
Address | 250, THIVON STR |
Postal Code | GR-12244 |
City | ATHENS |
Country | Greece |
Phone | +30 2105381422, 2105381225 |
Fax | +30 2105381226, 2105381224 |
Mobile | +30 6978353121 |
mariar_(on)_teipir.gr [@ replaced for spam protection] | |
Organisation URL | http://www.teipir.gr |
Personal URL | http://www.electronics.teipir.gr |
Membership | ISCA IEEE SP Society |
Languages | English |
Specialism | Speechtechnology:
Adaptive Filters Adaptive Speech Recognition Artificial Neural Networks Audio Signal Processing Background Noise Suppression Biomechanical modeling detecting speech in noise Digital Speech Processing Dynamic Programming in Speech Recognition Endpoint Detection Filter Design fundamental frequency estimation Generalized Radial Basis Function Networks HMM-based OCR Learning and Adaptive Control Theory Machine Learning and Speech Recognition Neural Networks Noise Effects Non-HMM Methods for Speech Recognition Pattern Recognition and Statistical Data Analysis PSOLA, Harmonic + Noise Recognition Technologies Robust Speech Recognition Room Acoustics Signal Analysis Signal Processing Speech Acoustics Speech Analysis Speech Databases for Automatic Speech/Speaker Recognition Speech Recognition Speech Recognition in Neural Architecture Speech Signal Processing Statistical Methods for Information Retrieval Statistical Pattern Recognition vocal-tract modelling VoIP Wavelet Transforms |
Photograph | Description or CV |
Update your profile | Last update: 2008-08-29 09:34:10 #!/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" |