|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1748 ] | Carnegie Mellon University, School of Computer Science |
---|---|
Organisation name | Carnegie Mellon University, School of Computer Science |
Short name or acronym | Carnegie Mellon University, School of Computer Science |
Organisation type | Center |
Activity type | Speech technology |
Address | 500 Forbes Avenue |
Postal Code | 15213 |
City | Pittsburgh, PA |
Country | United States |
Phone | + |
Fax | + |
informedia_(on)_cs.cmu.edu | |
Organisation URL | http://www.informedia.cs.cmu.edu/ |
Logo | Description |
![]() |
The Informedia Digital Video Library project is a research initiative at Carnegie Mellon University funded by the NSF, DARPA, NASA and others that studies how multimedia digital libraries can be established and used. The Informedia project has pioneered new approaches for automated video and audio indexing, navigaiton, visualization, search and retrieval and embedded them in a system for use in education, information and entertainment environments. Intelligent, automatic mechanisms are being developed to populate the library. Research in the areas of speech recognition, image understanding, and natural language processing supports the automatic preparation of diverse media for full-content and knowledge based search and retrieval. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
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" |