|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0665 ] | Naveen Srinivasamurthy |
---|---|
Name | Srinivasamurthy, Naveen |
Job Title | Researcher |
Organisation | USC |
Address | 1229 W 37 Place #2 |
Postal Code | 90007 |
City | Los Angeles |
Country | United States |
Phone | + 213-740-0022 |
Fax | + |
Mobile | + |
snaveen_(on)_sipi.usc.edu [@ replaced for spam protection] | |
Organisation URL | http://www.usc.edu |
Personal URL | http://biron.usc.edu/~snaveen |
Membership | ISCA IEEE |
Languages | English |
Specialism | Speechtechnology:
Robust Speech Recognition Statistical Pattern Recognition Distributed Speech Recognition Distributed signal processing for classification/estimation Distributed speech to speech translation Content based video/image/music retrieval Application specific compression Joint compression and classification Collaborative signal processing Distributed source coding Speech/Image/Video coding |
Photograph | Description or CV |
![]() |
http://biron.usc.edu/~snaveen/Resume.html |
![]() |
Last update: 2003-02-06 04:43:32 #!/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" |