|
|
Expert profile: Jintao Jiang
[ ID = 1549 ] |
Jintao Jiang |
Name |
Jiang, Jintao |
Job Title | Researcher |
Organisation |
House Ear Institute |
Address | 2100 West Thrid Street |
Postal Code | CA 90057 |
City | Los Angeles |
Country | United States |
Phone | + |
Fax | + |
Mobile | + |
Email |
jjt_(on)_icsl.ucla.edu
[@ replaced for spam protection] |
Organisation URL |
http://www.hei.org/ |
Personal URL |
|
Membership |
|
Languages | English Chinese |
Specialism |
Audiovisual speech processing, perception, and recognition
Visual speech synthesis
Speech recognition
Speech perception
Image processing
Digital signal processing |
Photograph | Description or CV |
|
http://www.ee.ucla.edu/~jjt
|
Update your profile
|
Last update: 2004-12-30 03:06:34
#!/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"
|
|