|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2939 ] | CSIP |
---|---|
Organisation name | Center for Signal and Image Processing |
Short name or acronym | CSIP |
Organisation type | University |
Activity type | Language or Speech Technology research |
Address | 250 14th Street, NW |
Postal Code | 30318 |
City | Atlanta |
Country | United States |
Phone | +1 404-894-2920 |
Fax | +1 404-894-8363 |
Organisation URL | http://csip.ece.gatech.edu/csipindex.html |
Logo | Description |
![]() |
Digital Signal Processing is concerned with the theoretical and practical aspects of representing information bearing signals in digital form, and with using computers or special purpose digital hardware either to extract that information or to transform the signals in useful ways. Areas where digital signal processing has made a significant impact include: telecommunications, man-machine communications, medical technology, radar and sonar, and seismic data analysis. The Center of Signal and Image Processing, part of the Georgia Tech, School of Electrical and Computer Engineering, is at the forefront of research and education in this important field. The laboratory boasts an outstanding, internationally known faculty; a large doctoral education program; an extensive selection of up-to-date courses; a wide-ranging research program in speech and image processing, DSP algorithms, hardware architectures, and DSP software; and excellent modern computer facilities for research and education. |
Contact | |
Name | Christy Ellis |
Function | contact for the CSIP group |
Department | |
christy.ellis_(on)_ece.gatech.edu | |
Phone | + +1 404 894 2920 |
Fax | + +1 404 894 8363 |
![]() |
Last update: 2005-08-08 15:18:38 #!/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" |