|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1877 ] | ATR Human Information Processing Research Laboratories (ATR-HIP) |
---|---|
Organisation name | ATR Human Information Processing Research Laboratories (ATR-HIP) |
Short name or acronym | ATR Human Information Processing Research Laboratories (ATR-HIP) |
Organisation type | Center |
Activity type | Speech technology |
Address | Seika-cho |
Postal Code | 619-0288 |
City | Kyoto |
Country | Japan |
Phone | + +81 774 95 1011 |
Fax | + +81 774 95 1008 |
info_(on)_hip.atr.co.jp | |
Organisation URL | http://www.hip.atr.co.jp/ |
Logo | Description |
![]() |
ATR Human Information Processing Research Laboratories (ATR HIP), which has the official project title of "Research on the Human Communication Mechanism", was founded on March 26, 1992, to oversee a new project at ATR with the mission of "Establishing Fundamentals in Human Interface Technologies Learned from Sophisticated Functions in Human Information Processing." In this project, we study Human Interface Fundamentals as they relate to information processing in the brain. In order to make positive contributions to future brain research, we focus on three areas: "Multi-modal Communication," "Interaction between Production and Perception," and "Brain Communications." |
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" |