|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 0596 ] | Dr. Hideki Kawahara |
|---|---|
| Name | Kawahara, Dr. Hideki |
| Job Title | Professor |
| Organisation | Wakayama University |
| Address | 930 Sakaedani |
| Postal Code | 640-8510 |
| City | Wakayama |
| Country | Japan |
| Phone | + +81-73-457-8461 |
| Fax | + +81-73-457-8112 |
| Mobile | + |
| kawahara_(on)_sys.wakayama-u.ac.jp [@ replaced for spam protection] | |
| Organisation URL | http://www.sys.wakayama-u.ac.jp/ |
| Personal URL | http://www.sys.wakayama-u.ac.jp/~kawahara/index-e.html |
| Membership | ISCA ASA |
| Languages | English Japanese |
| Specialism | Speechtechnology:
Artificial Neural Networks Audio Signal Processing Auditory Modelling Databases of Emotional Speech Digital Speech Processing Emotion in Speech Hearing Impairment Human Factors Engineering Multimodal Human-Machine Communication Neural Networks Psychoacoustics Signal Processing Speech Analysis Speech Perception Speech Processing Speech Synthesis Voice Processing |
| Photograph | Description or CV |
| http://www.wakayama-u.ac.jp/~kawahara/vitae.html | |
|
|
Last update: 2003-08-07 09:43:13 #!/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" |