[ ID = 1798 ] | Centre for Intelligent Information Processing Systems (CIIPS),
The University of Western Australia |
Organisation name | Centre for Intelligent Information Processing Systems (CIIPS), The University of Western Australia |
Short name or acronym | Centre for Intelligent Information Processing Systems (CIIPS), The University of Western Australia |
Organisation type | Center |
Activity type | Speech technology |
Address | CIIPS Secretary Centre for Intelligent Information Processing Systems Department of Electrical and Electronic Engineering The University of Western Australia |
Postal Code | 6907 |
City | Nedlands, Perth, WA |
Country | Australia |
Phone | + +61 9 380 1763 |
Fax | + +61 8 9380 1168 |
Email | ciips-secretary_(on)_ee.uwa.edu.au |
Organisation URL | http://ciips.ee.uwa.edu.au/ |
Logo | Description |
 |
In 1991 the Centre for Intelligent Information Processing
Systems was established as a centre for excellence within the
University of Western Australia. Formerly existing as the Digital
Signals Processing Research Group within the Department of Electrical
and Electronic Engineering, CIIPS has developed into a
multidisciplinary research centre which incorporates researchers from
engineering, mathematics, science and medicine. The centre combines an
active teaching program with both pure and applied research to provide
an environment in which innovative theoretical developments are
rapidly implemented using current technologies to provide solutions to
a range of real-world problems.
|
| Contact |
Name | Professor Yianni Attikiouzel |
Function | Director of CIIPS |
Department | |
Email | yianni_(on)_ee.uwa.edu.au |
Phone | + +61 8 9380 3134 |
Fax | + +61 8 9380 1168 |
Update this profile
|
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"
|