|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0980 ] | Faculty of Electrical Engineering and Computer Science |
---|---|
Organisation name | Faculty of Electrical Engineering and Computer Science |
Short name or acronym | Faculty of Electrical Engineering and Computer Science |
Organisation type | Center |
Activity type | Speech technology |
Address | Smetanova 17 |
Postal Code | SI-2000 |
City | Maribor |
Country | Slovenia |
Phone | + +386 62 220 7000 |
Fax | + +386 62 211 178 |
bogo.horvat_(on)_uni-mb.si | |
Organisation URL | http://www.el.feri.uni-mb.si |
Logo | Description |
![]() |
The Laboratory for Digital Signal Processing carries out various national and international research projects and is engaged in education and training in undergraduate and postgraduate study. The Laboratory for Digital Signal Processing is currently engaged in various research projects in the field of automatic speech recognition funded by Ministry of Science and Technology Republic of Slovenia -- project ARTES (Continuous Slovene Speech Recognition over the Telephone), European Union -- COPERNICUS-ONOMASTICA, COST 249 - Continuous Speech Recognition over the Telephone, SpeechDat II, and by industry -- SIEMENS Corporate Research and Development Laboratories. The laboratory has also developed three spoken dialogue systems: O-tel (reverse directory), HOBIS (home banking system) and VEDAMA (automatic correspondence system). |
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" |