|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0744 ] | Multimedia Information Systems Laboratory |
---|---|
Organisation name | Multimedia Information Systems Laboratory |
Short name or acronym | Multimedia Information Systems Laboratory |
Organisation type | Center |
Activity type | Speech technology |
Address | 96 Frelinhuysen Road, CoRE Building, Floors 6 & 7, Busch Campus |
Postal Code | 08854-8088 |
City | Piscataway, NJ |
Country | United States |
Phone | + +1 732 445 3443 |
Fax | + |
Organisation URL | http://www.caip.rutgers.edu/multimedia/ |
Logo | Description |
![]() |
The Multimedia Information Systems Laboratory conducts research on human-computer interaction. Technical projects include speech recognition, speech synthesis, hands-free sound pickup, audio and video coding, distributed computing, database query by image content, and high-speed data networking. The primary focus of the laboratory is to make it easier for humans to communicate with complex computers and with each other, and to access the vast amounts of information stored online. The Multimedia Information Systems Laboratory is part of the Center for Advanced Information Processing (CAIP), which is jointly supported by the New Jersey Commission on Science and Technology, Rutgers University, and industry membership. |
Contact | |
Name | Mr. Stephen M. Carter |
Function | Director |
Department | Technical Operations |
scarter_(on)_caip.rutgers.edu | |
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" |