|
|
Expert profile: Dr Amir Hussain
[ ID = 2075 ] |
Dr Amir Hussain |
Name |
Hussain, Dr Amir |
Job Title | Senior Lecturer in Computing Science |
Organisation |
University of Stirling, Scotland, UK |
Address | Department of Computing Science, University of Stirling |
Postal Code | FK9 4LA |
City | Stirling |
Country | United Kingdom |
Phone | +44 1786467437 |
Fax | +44 1786464551 |
Mobile | +44 7886919084 |
Email |
ahu_(on)_cs.stir.ac.uk
[@ replaced for spam protection] |
Organisation URL |
|
Personal URL |
http://www.cs.stir.ac.uk/~ahu/ |
Membership |
IEEE |
Languages | English |
Specialism |
Adaptive Speech Recognition
Artificial Neural Networks
Audio Signal Processing
Audiovisual Speech Processing
Auditory Modelling
Auditory scene analysis
Automotive Applications
Background Noise Suppression
Bilingual Speech Production/Perception
CASE tools for speech apps - developing
CASE tools for speech apps - using
Co-channel speech
Cochlear Implants
Cognitive Engineering
Communication
Computation
Control Systems
Development and Implementation of Speech Technology Applications
Digital Speech Processing
Generalized Radial Basis Function Networks
Hearing Impairment
Hidden Markov Models
Learning and Adaptive Control Theory
Machine Learning
Multimodal Communciation
Multimodal Human-Machine Communication
Multimodality
Neural network
Neural Networks
Noise Reduction
Psychoacoustics
Room Acoustics
Search Algorithms
Signal Analysis
Signal Processing
Sound direction finding
Speech Analysis
Speech Applications
Speech Coding
Speech Databases
Speech Databases for Automatic Speech/Speaker Recognition
Speech Disorders
Speech Enabled IVRs
Speech Enhancement
Speech Evaluation
Speech intelligibility measurement
Speech Processing
Speech quality measurement
Speech Recognition in Neural Architecture
Speech Signal Processing
Speech Technologies
Speech Training Aids for Deaf and Hearing Impaired
Support Vector Machines for Speech Processing
Systems for Older and Disabled People
Technology
Technology Implementation
Telecommunications
Vector Quantization
Very low bit rate coding
Vocal-tract modelling
Voice Activity Detection
Voice Biometrics (Speaker Verification, Identification,
Voice Processing
Voice to Text Conversion for the Hearing Impaired
Voice-Driven Telecommunications Applications
VoiceXML
VoIP
Wavelet Transforms
Web Applications
Wireless Communications Applications |
Photograph | Description or CV |
|
http://www.cs.stir.ac.uk/~ahu/research-publications.htm
|
Update your profile
|
Last update: 2007-01-14 20:36:17
#!/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"
|
|