|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2421 ] | Department of Electronics & Information Processing - V.U.Brussel |
---|---|
Organisation name | Department of Electronics & Information Processing - V.U.Brussel |
Short name or acronym | Department of Electronics & Information Processing - V.U.Brussel |
Organisation type | Center |
Activity type | Speech technology |
Address | Pleinlaan 2 |
Postal Code | B-1050 |
City | Brussel |
Country | Belgium |
Phone | + +32 2 267 77 96 |
Fax | + +32 2 629 28 83 |
Organisation URL | http://www.etro.vub.ac.be/ |
Logo | Description |
![]() |
Our main educational task is Electronics ranging from circuits, device modeling, fabrication technology, computer aided design and optimisation of complex systems. Electronics being an important enabling technology of the Information Society, ETRO also covers selected fields in Information Processing, like digital signal/speech processing, pattern recognition, image processing and machine vision. In R&D, three laboratories are covering a wide range of generic technologies in Micro- and Optoelectronics, Speech and Image Processing, which cannot be dealt with separately when the real world applications of the Information Society are envisaged. |
Contact | |
Name | Jan Cornelis |
Function | |
Department | |
jpcornel_(on)_etro.vub.ac.be | |
Phone | + +32 2 629 29 31 |
Fax | + +32 2 629 28 83 |
![]() |
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" |