[ ID = 0918 ] | Speech Processing & Auditory Perception Laboratory - (SPAPL) |
Organisation name | Speech Processing & Auditory Perception Laboratory - (SPAPL) |
Short name or acronym | Speech Processing & Auditory Perception Laboratory - (SPAPL) |
Organisation type | Center |
Activity type | Speech technology |
Address | Electrical Engineering Department of UCLA, Box 951361 |
Postal Code | 90095-1361 |
City | Los Angeles, CA |
Country | United States |
Phone | + +1 310 825 4321 |
Fax | + |
Email | qifeng_(on)_icsl.ucla.edu |
Organisation URL | http://www.icsl.ucla.edu/~spapl/ |
Logo | Description |
 |
SPAPL conducts researches in a wide range of areas in
speech processing. Their research interests focus on developing
quantitative models of human speech perception and production
mechanisms and using these models to improve the performance of
speech-processing applications. These quantitative models are
essential for providing insights into human cognitive abilities.
Research activities include: Modeling Speech Perception in Noise with
Applications to Speech Coding, Hearing Aids and Automatic Speech
Recognition; Novel Techniques for Modeling Speech Production;
Synthesis of Pathological Voices; and Acoustic Echo Cancelation.
|
| Contact |
Name | Professor Abeer A.H. Alwan |
Function | Faculty Head |
Department | Department of Electrical Engineering |
Email | alwan_(on)_icsl.ucla.edu |
Phone | + +1 310 206 2231 |
Fax | + +1 310 206 4685 |
Update this profile
|
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"
|