|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0946 ] | Wire Communications Laboratory |
---|---|
Organisation name | Wire Communications Laboratory |
Short name or acronym | Wire Communications Laboratory |
Organisation type | Center |
Activity type | Call centersSpeech technology |
Address | Electrical and Computer Engineering Building, Third Floor |
Postal Code | |
City | Patras |
Country | Greece |
Phone | + +30 61 991722 |
Fax | + +30 61 991 855 |
gkokkin_(on)_wcl.ee.upatras.gr | |
Organisation URL | http://www.wcl.ee.upatras.gr/h_wcl/wire_uk.htm |
Logo | Description |
![]() |
The WCL has developed activities in the fields of Telecommunications, Speech & Natural Technology, Image Processing and Audio & Electro-acoustics. The research activity of the Wire Communications Laboratory is mainly of an applied nature. At present it includes the following topics of research and development which are pursued with funding from various sources (EU, Greek General Secretariat for Research and Technology, industry, etc.): Design and construction up to the level of industrial prototype of advanced telecommunications systems and microcomputer controlled devices, optimization of telecommunication networks with applications in the Greek network, digital processing of speech with applications in automated speech recognition, speaker recognition and speech synthesis of Modern Greek, Natural Language processing, linguistic processing of Modern Greek texts by computer, coding of acoustic signals, processing of noisy acoustic signals, development of artificial intelligence systems, multimedia processing and transmission of medical information. |
Member of elsnet | Contact |
Name | Professor George Kokkinakis |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-16 18:10: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" |