|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1881 ] | GIPSyC |
---|---|
Organisation name | Research Group on Signal Processing and Communications(GiPSyC) |
Short name or acronym | GIPSyC |
Organisation type | Center |
Activity type | Speech technology |
Address | Dpto. de Electrónica y Tecnología de Computadores. Facultad de Ciencias. Universidad de GranadaCampus Universitario Fuentenueva s/n |
Postal Code | 18071 |
City | Granada |
Country | Spain |
Phone | + +34 958 243193 |
Fax | + +34 958 243230 |
rubio_(on)_ugr.es | |
Organisation URL | http://ceres.ugr.es/ |
Logo | Description |
![]() |
The Research Group on Signal Processing and Communications%01(Grupo de Investigación en Procesamiento de Señales y Comunicaciones,%01GiPDSyC) is composed of twelve researchers from the Department of%01Electronics and Computer Technology (DETC) of the University of%01Granada (UGR). The group's members have the B.Sc. Degree in Physics%01(Electronics specialty) or in Computer Science. Eleven of them have a%01Ph.D. and the rest are Ph.D. students, taking part in the Department's%01Doctorate Programme Mobile Multimedia. They also teach on the fields of Signal Processing and%01Coding, Data Communications and Transmission, Computer Networks and%01I/O Devices, Digital Control and Robotics, and Electronic%01Communications. The current research efforts are specially focussed on%01fields of Speech Processing. These are:%011. Speech Analysis, Coding and Synthesis%012. Speech Recognition%013. Dialog Systems |
Contact | |
Name | Professor Antonio J. Rubio |
Function | Head of GIPSyC research group |
Department | Electrónica y Tecn. de Computadores |
rubio_(on)_ugr.es | |
Phone | + +34 958 243193 |
Fax | + +34 958 243230 |
![]() |
Last update: 2002-04-15 11:58:41 #!/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" |