|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2794 ] | NISLab |
---|---|
Organisation name | Natural Interactive Systems Laboratory (NISLab) |
Short name or acronym | NISLab |
Organisation type | Center |
Activity type | Speech technology |
Address | University of Southern Denmark - Odense, Science Park 10 |
Postal Code | DK-5230 |
City | Odense M |
Country | Denmark |
Phone | + +45 65 50 35 51 |
Fax | + +45 63 15 72 24 |
Organisation URL | http://www.nis.sdu.dk/ |
Logo | Description |
![]() |
The Natural Interactive Systems Laboratory (NIS), part of the Faculty of Science and Engineering at University of Southern Denmark, Odense University, Denmark, does fundamental and applied research in natural interactive systems including spoken language dialogue systems, multimodal and gestural systems, web-based collaborative systems, natural interactivity data handling tools, design support tools for usability engineering, and systems evaluation. NISLab emphasises the development of novel theory, concepts, methods and software tools in close interaction with the development of demonstrators of advanced practical systems. |
Member of elsnet | Contact |
Name | Professor, Dr.Phil. Niels Ole Bernsen |
Function | Director |
Department | NIS Laboratory |
nob_(on)_nis.sdu.dk | |
Phone | + +45 65 50 35 44 |
Fax | + +45 63 15 72 24 |
![]() |
Last update: 2002-05-06 15:28:39 #!/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" |