SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2948
Hearing loss Detection through Audiogram in Mobile Devices
Manas Kulkarni1, Parth Parab2, Jainesh Singh3, Vaibhavi Chavan4, Garima Mishra5
1,2,3,4Student, Dept. of Computer Engineering, Shree L R Tiwari College of Engineering, Dist. Thane,
Maharashtra, India
5Asst. Professor, Dept. of Computer Engineering, Shree L R Tiwari College of Engineering, Dist. Thane,
Maharashtra, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Hearing loss detection through audiogram in
mobile devices (HearAssist) is a mobile software project
which is an attempt on creating an android application to
demonstrate Android smartphone as an educational tool for
hearing impairment. Hearing correction in Mobile devicesis
a software system which aims to help people with mild to
moderate hearing loss, by first creating a medically accurate
audiogram report of the audibility of the user andthenusing
the audiogram graph to also generate a textual reportfor the
convenience of the user. Apart from this, all the reports
generated across any and all devices are stored online on a
database for generating and visualizing trends of hearing
capabilities of users across various age groups.
Key Words: Audiogram, Audiometry, Android, Hearing
Aid, trends.
1. INTRODUCTION
According to WHO (World Health Organization) over 466
million people in the world have some sort of hearing loss
and it is estimated to go to around 900 million or One in Ten
people by 2050. Hearing loss is not just limited to old people
in today’s world as technology has moved so forward and
auditory systems have become betterthanbefore, most ofus
tend to use earphones, speakers orany relatedaudiodevices
beyond the safe limit without thinking of the repercussions.
This has resulted in a growing trend in some sort of hearing
loss in young people ranging from 18 to as old as 25 years of
age.
The audiogram report is the most efficient and easily
accessible generated method to detect any sort of hearing
loss a person may or may not have. Since the standard
hearing capacity for humans is from 20Hz to 20KHz the
audiogram generating devices are designed in a particular
way to play frequencies ranging from 250, 500, 1000, 2000,
4000 and 8000 Hz at decibels ranging from 0 to 100 db.
Existing traditional audiogram generating devices are huge
and bulky which require a specific setting and a pre-
registered appointment which is more time consuming to
receive the full report. Our proposed software aims to
eliminate the whole process by helping the user to take up
the test and generate the audiogram results in both,
graphical and textual format. The reports of the conducted
tests are displayed on-time on the Android powered mobile
device in the comfort of the users’ home with nothing more
than just a good quality of earphones to use for.
2. EXISTING SYSTEM
2.1 Traditional Audiogram and Hearing AidDevice
An audiometry test can be performed at Audiology
department of a hospital. A GP audiologist presence is
required at the time of test conduction. These human efforts
can be reduced, since no inspection is required while
conducting the test on the smartphone device. The devicesat
the laboratory are expensive and also require high
maintenance, also the environment of the room needs to be
adjusted. Overall process is tiresome of both the parties
involved which involves man power and money, which we
aim to eliminate. [1] [2]
2.2 Existing Software Audiogram System
The existing software available in the market can be used to
customize the physical hearing aid device to modify the
levels of volume/volumelevel.Alsoprovidestheflexibilityto
adapt according to the changing environments around the
user. The feature this software lacks is Audiogram
generation. On top of that the values are manually inserted
to the software to generateresult.Audiogramsgenerated are
only in the form of graphs which may not be totally
understandable to the user. [3] [4]
3. PROPOSED SYSTEM
The proposed system tends to eliminate or overcome the
previous shortcomings. Here we aim to create a medically
accurate audiogram for which the user has to give inputs for
the frequencies he will hear through the application. We
achieve this by using the same frequencies which are used
when someone takes an audiogram test at a lab, but instead
on a mobile device which is more than capable to output
these frequencies after the which the user is asked togivean
input whether he can listen to the frequencies in the
particular intensities or not. Once all the frequencies are
played and the user gives all the inputs, the application then
creates an audiogram based on these results along with the
textual report for the user to view. [8]
Every test taken on the application is automatically stored
on the cloud through google sheets API which can be used to
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2949
check out trends for different age groups for thehearingloss
classification.
4. SYSTEM ANALYSIS
4.1 Data analysis and trends
Chart-1: Google sheets data visualization
Front-end layout for the user-based application
4.2 Front-end layout fortheuser-basedapplication
Fig -1: Mobile based application for the user
4.3 System overview block diagram
Fig -2: Functional block diagram of proposed system
4.4 Proposed system algorithm
1. Click ‘Perform Test’ to start the Audiometry test.
2. Left ear testing starts:
a) Frequencies (250Hz, 500Hz, 1000Hz, 2000Hz and
4000Hz) will be played one after the other at various
intensities (in dB) to generate an Audiogram. [7]
b) The user has to respond with ‘Yes’ or ‘No’ according
to audibility he/she can hear it or not. [7]
3. The same process will be repeated for the right ear.
An audiogram will be generated using these inputs and will
be displayed to the users.
4. A tabular representation is shown of the audiogram as a
textual report.
5. The data collected from the user is send to google sheets
along with the age category.
6. The data collected on google sheet is used to display a
graph to show trends in hearing capabilities as per age
groups.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2950
5. IMPLEMENTATION OF SYSTEM
5.1 Frequency Generation
Required frequency is being generated using basic Digital
Signal Processing methodologies. By defining duration as 5
seconds and sampling rate as 44100 Hz, we calculate
number of samples and we provide required frequency
which we want to generate. The frequencies range from250
Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz and 8000 Hz. The
selected frequency is outputted at an intensity of 40dB via
earphones. The intensity is incremented by 10 if the user's
response is no and decremented by 10 if the response is yes.
The input values are collected in the threshold array. We
create an array of samples using sampling rate and
frequency of the tone, which we then convert into 16-bit
PCM sound array. Now we create an object of AudioTrack
class to which we pass samplerate,numberofsamplesalong
with streamType, channelConfig, audioFormat and mode.
This object is then written in generatedSound which is then
played using play method. [10]
5.2 Audiogram Generation
GraphView library is importedtoimplementreal timegraph.
The input values to the graph are decided as per the user’s
feedback. Each minimum value offrequencyattheparticular
decibel is noted in the frequency test activity taken before
the graph activity. After all the tests are conducted all the
values for both the left and right ear is stored in a final array
which is passed to the graphview for plotting.
StaticLabelFormatter is used set labels of the X-axis and Y-
axis. LineGraphSeries class is used to plot a line graph.
Customized X mark has been using canvas.drawlinemethod.
[9]
5.3 Data Trends
Here we google the google sheets API to create a Json link
which is embedded in the android code of the application,
every time the user saves a report the array value of all the
frequencies is automatically sent to thegooglesheetwherea
new entry is created for each report. The api then
automatically updates the data trends based on the data
added to show relevant data visualization to analysis.
6. ADVANTAGES
1. Can be accessed anytime: The application onceinstalled
can be then used as and when required. It can be used
anytime and anywhere.
2. Reduction in cost factor: This replaces the massive
system to conduct audiometry test. Thus, the costfactor
is reduced effectively.
3. Less time consumption: Test conduction takes no more
than 15 minutes. Thus, the time required for taking test
is reduced significantly.
4. Sharing test results: The test results can be shared with
the doctors or concerned people by the user. Thus,
making it convenient for the user to share the current
results by saving his/her time of taking the audiometry
tests again.
7. LIMITATIONS
Only air conduction test is performed, as it requires delivery
of pure tone sounds through headphones or earbuds. Bone-
conduction testing is not performed as it requires a bone
oscillator, a small square box on the end of a metal
headband.
8. APPLICATION AND ANALYSIS
This particular system is designed to provide hearing aid
assistance on mobile devices for people with frequency
deficiency. The aim of this software system is to be reliable,
efficient, economical and easy to usesothatmorepeoplecan
readily use it. Digitizing this mechanism to provide a better
and handsfree hearing aid system is the main goal of this
proposed system. It will be easily accessible to all as it will
be in the form of a mobile application. [8]
Possible analytics with the system:
1. Left/right ear audibility range in Db at various
frequencies.
2. Data points to be plotted for audiogram generation.
3. Audiogram graph showcasing the left and right ear
frequency intensities.
4. Frequencies to be amplified for efficient hearing.
5. List of previously conducted tests
9. FUTURE SCOPE
1. Based on the results from the audiometry test we can
implement Hearing Aid like boosting capabilities in the
smartphone. This will allow the users to have comfortable
hearing while listening to music or calls and even while
watching videos
2. Currently the audiometry test can only detect
Sensorineural hearing loss, although in future, methods can
be implemented to also detect Conductive hearing loss.
3. Fine calibration of the output for various set of mobiles
and earphones may also be possible,ifthedata regardingthe
output capacity of variety of smartphones and earphones is
available.
10. CONCLUSION
As mobile technologies are at the brim of innovation, more
and more people reach out to their mobile devices as their
primary source of digital interaction. Hearing deficiency
being one of the major problems the world is facing, we are
compelled to take important steps towards it. Hence, this
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2951
particular application not only helps the user to give a
preliminary audiogram to get an initial idea of any hearing
deficiency he or she might have, this mobile application also
helps in providing general awareness regarding the same to
more and more people who come across this software.
Storing and analyzing data provided by the users also helps
us maintain a ballpark of the reports to as to better
understand the demography of people and the severity of
hearing deficiency all in one place.
REFERENCES
[1] Tao Zhang, Fred Mustiere and Christophe Micheyl,
“Intelligent Hearing Aids: The Next Revolution”, 978-1-
4577-0220-4/16/$31.00 ©2016 IEEE
[2] Nitya Tiwari, Prem C. Pandey, Anurag Sharma, “A
Sliding-band Dynamic Range Compression for Use in
Hearing Aids”, 978-1-5090-2361-1/16/$31.00 © 2016
IEEE.
[3] Nitya Tiwari, Prem C. Pandey, Pandurangarao N.
Kulkarni, “Real-time Implementation of Multi-band
Frequency Compression for Listeners with Moderate
Sensorineural Impairment”.
[4] Jong Min Choi, Junil Sohn, Yunseo Ku, Dongwook Kim,
and Junghak Lee, “Phoneme-Based Self Hearing
Assessment on a Smartphone”, 2168-2194/$31.00 ©
2013 IEEE.
[5] Dong-Wook Kim,Eui-SungJung,Ki-WoongSeong,Jyung-
Hyun Lee and Jin-Ho Cho, “Implementation and
Verification of a Platform for Bluetooth Linked Hearing
Aids System withSmartPhoneandMultimedia Devices”,
© 2013 IEEE.
[6] Yu-Cheng Lin, Ying-Hui Lai, Hsiu-Wen Chang, Yu Tsao,
Member, IEEE, Yi-ping Chang, and Ronald Y. Chang,
Member, IEEE, “SmartHear: A Smartphone-Based
Remote Microphone Hearing Assistive System Using
Wireless Technologies”, 1932-8184 © 2015 IEEE.
[7] UT Austin's Engineering World Health Design
Competition Project,
https://github.com/ReeceStevens/ut_ewh_audiometer_
2014
[8] AndroidProjectHearing,
https://github.com/JunSoftware109/AndroidProjectHe
aring
[9] uSound(hearing assistance),
https://play.google.com/store/apps/details?id=com.ne
wbrick.usound&hl =en
[10]Petralex hearing aid,
https://play.google.com/store/apps/details?id=com.it4
you.petralex&hl=e n_IN

More Related Content

What's hot

Implementation of embedded real time monitoring temperature and humidity system
Implementation of embedded real time monitoring temperature and humidity systemImplementation of embedded real time monitoring temperature and humidity system
Implementation of embedded real time monitoring temperature and humidity system
Journal Papers
 
Indoor Positioning System using Magnetic Positioning and BLE beacons
Indoor Positioning System using Magnetic Positioning and BLE beaconsIndoor Positioning System using Magnetic Positioning and BLE beacons
Indoor Positioning System using Magnetic Positioning and BLE beacons
IRJET Journal
 

What's hot (20)

DETECTION OF AIR POLLUTANT USING ZIGBEE
DETECTION OF AIR POLLUTANT USING ZIGBEEDETECTION OF AIR POLLUTANT USING ZIGBEE
DETECTION OF AIR POLLUTANT USING ZIGBEE
 
Implementation of embedded real time monitoring temperature and humidity system
Implementation of embedded real time monitoring temperature and humidity systemImplementation of embedded real time monitoring temperature and humidity system
Implementation of embedded real time monitoring temperature and humidity system
 
IRJET- Personal Assistant for Visually Impaired People in Malls
IRJET-  	  Personal Assistant for Visually Impaired People in MallsIRJET-  	  Personal Assistant for Visually Impaired People in Malls
IRJET- Personal Assistant for Visually Impaired People in Malls
 
Overview of Various Industrial Fault Diagnosis Methods
Overview of Various Industrial Fault Diagnosis MethodsOverview of Various Industrial Fault Diagnosis Methods
Overview of Various Industrial Fault Diagnosis Methods
 
Calibration Of Instruments Using LabVIEW
Calibration Of Instruments Using LabVIEWCalibration Of Instruments Using LabVIEW
Calibration Of Instruments Using LabVIEW
 
Voice Recognition Eye Test
Voice Recognition Eye TestVoice Recognition Eye Test
Voice Recognition Eye Test
 
How Networked Things are Changing Medicine
How Networked Things are Changing MedicineHow Networked Things are Changing Medicine
How Networked Things are Changing Medicine
 
TechnicalReport
TechnicalReportTechnicalReport
TechnicalReport
 
IRJET- Biometric Scanner using Compressed Sensing
IRJET- Biometric Scanner using Compressed SensingIRJET- Biometric Scanner using Compressed Sensing
IRJET- Biometric Scanner using Compressed Sensing
 
IRJET- Mobile Detector
IRJET-  	  Mobile DetectorIRJET-  	  Mobile Detector
IRJET- Mobile Detector
 
Indoor Positioning System using Magnetic Positioning and BLE beacons
Indoor Positioning System using Magnetic Positioning and BLE beaconsIndoor Positioning System using Magnetic Positioning and BLE beacons
Indoor Positioning System using Magnetic Positioning and BLE beacons
 
IRJET- IoT based Diamond Security System with Video Surveillance
IRJET- IoT based Diamond Security System with Video SurveillanceIRJET- IoT based Diamond Security System with Video Surveillance
IRJET- IoT based Diamond Security System with Video Surveillance
 
IRJET - Garbage Collecting Robot using IoT
IRJET - Garbage Collecting Robot using IoTIRJET - Garbage Collecting Robot using IoT
IRJET - Garbage Collecting Robot using IoT
 
IRJET - Dual Verification ATM for Blind People
IRJET -  	  Dual Verification ATM for Blind PeopleIRJET -  	  Dual Verification ATM for Blind People
IRJET - Dual Verification ATM for Blind People
 
IRJET- Embedded System for Automatic Door Access using Face Recognition Te...
IRJET- 	  Embedded System for Automatic Door Access using Face Recognition Te...IRJET- 	  Embedded System for Automatic Door Access using Face Recognition Te...
IRJET- Embedded System for Automatic Door Access using Face Recognition Te...
 
CNC upgradation
CNC upgradationCNC upgradation
CNC upgradation
 
Digital Procurement in the Nuclear Industry: Tips on Embracing New Technologies
Digital Procurement in the Nuclear Industry: Tips on Embracing New TechnologiesDigital Procurement in the Nuclear Industry: Tips on Embracing New Technologies
Digital Procurement in the Nuclear Industry: Tips on Embracing New Technologies
 
ROLE OF SUBSTANTIAL CHARACTERISTICS IN ELECTRONIC NOSE SENSOR SELECTION FOR D...
ROLE OF SUBSTANTIAL CHARACTERISTICS IN ELECTRONIC NOSE SENSOR SELECTION FOR D...ROLE OF SUBSTANTIAL CHARACTERISTICS IN ELECTRONIC NOSE SENSOR SELECTION FOR D...
ROLE OF SUBSTANTIAL CHARACTERISTICS IN ELECTRONIC NOSE SENSOR SELECTION FOR D...
 
C6524029320
C6524029320C6524029320
C6524029320
 
Computer software tones assessment improving the blades
Computer software tones assessment improving the bladesComputer software tones assessment improving the blades
Computer software tones assessment improving the blades
 

Similar to IRJET- Hearing Loss Detection through Audiogram in Mobile Devices

Similar to IRJET- Hearing Loss Detection through Audiogram in Mobile Devices (20)

Smart Sound Measurement and Control System for Smart City
Smart Sound Measurement and Control System for Smart CitySmart Sound Measurement and Control System for Smart City
Smart Sound Measurement and Control System for Smart City
 
Biometric Ear Recognition System
Biometric Ear Recognition SystemBiometric Ear Recognition System
Biometric Ear Recognition System
 
IOT BASED VIBRATION VEST FOR DEAF PEOPLE
IOT BASED VIBRATION VEST FOR DEAF PEOPLEIOT BASED VIBRATION VEST FOR DEAF PEOPLE
IOT BASED VIBRATION VEST FOR DEAF PEOPLE
 
IRJET- Data Transmission for Proximity Devices using Ultrasonic Sound Waves
IRJET- Data Transmission for Proximity Devices using Ultrasonic Sound WavesIRJET- Data Transmission for Proximity Devices using Ultrasonic Sound Waves
IRJET- Data Transmission for Proximity Devices using Ultrasonic Sound Waves
 
Voice-based Login System
Voice-based Login SystemVoice-based Login System
Voice-based Login System
 
IRJET- Voice Command Execution with Speech Recognition and Synthesizer
IRJET- Voice Command Execution with Speech Recognition and SynthesizerIRJET- Voice Command Execution with Speech Recognition and Synthesizer
IRJET- Voice Command Execution with Speech Recognition and Synthesizer
 
A review of Noise Suppression Technology for Real-Time Speech Enhancement
A review of Noise Suppression Technology for Real-Time Speech EnhancementA review of Noise Suppression Technology for Real-Time Speech Enhancement
A review of Noise Suppression Technology for Real-Time Speech Enhancement
 
Automated attendance system using Face recognition
Automated attendance system using Face recognitionAutomated attendance system using Face recognition
Automated attendance system using Face recognition
 
IoT BASED REAL TIME AIR AND NOISE POLLUTION ALERT SYSTEM FOR ASTHMA AND ANGIN...
IoT BASED REAL TIME AIR AND NOISE POLLUTION ALERT SYSTEM FOR ASTHMA AND ANGIN...IoT BASED REAL TIME AIR AND NOISE POLLUTION ALERT SYSTEM FOR ASTHMA AND ANGIN...
IoT BASED REAL TIME AIR AND NOISE POLLUTION ALERT SYSTEM FOR ASTHMA AND ANGIN...
 
Teleconferencing plugin for noisy environment
Teleconferencing plugin for noisy environmentTeleconferencing plugin for noisy environment
Teleconferencing plugin for noisy environment
 
Voice Recognition System for Automobile Safety.
Voice Recognition System for Automobile Safety.Voice Recognition System for Automobile Safety.
Voice Recognition System for Automobile Safety.
 
Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...
Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...
Vibration Analysis for condition Monitoring & Predictive Maintenance using Em...
 
IRJET- Voice Controlled Robotic Vehicle
IRJET- Voice Controlled Robotic VehicleIRJET- Voice Controlled Robotic Vehicle
IRJET- Voice Controlled Robotic Vehicle
 
Interactive Voice Response System for College automation
Interactive Voice Response System for College automationInteractive Voice Response System for College automation
Interactive Voice Response System for College automation
 
IRJET - Sign Language Recognition System
IRJET -  	  Sign Language Recognition SystemIRJET -  	  Sign Language Recognition System
IRJET - Sign Language Recognition System
 
IRJET- Voice based Gender Recognition
IRJET- Voice based Gender RecognitionIRJET- Voice based Gender Recognition
IRJET- Voice based Gender Recognition
 
HAND GESTURE BASED SPEAKING SYSTEM FOR THE MUTE PEOPLE
HAND GESTURE BASED SPEAKING SYSTEM FOR THE MUTE PEOPLEHAND GESTURE BASED SPEAKING SYSTEM FOR THE MUTE PEOPLE
HAND GESTURE BASED SPEAKING SYSTEM FOR THE MUTE PEOPLE
 
Desktop Based Voice Assistant Application Using Machine Learning Approach
Desktop Based Voice Assistant Application Using Machine Learning ApproachDesktop Based Voice Assistant Application Using Machine Learning Approach
Desktop Based Voice Assistant Application Using Machine Learning Approach
 
IRJET- IoT and ML based Smart TV for Child Eyes Safety
IRJET-  	  IoT and ML based Smart TV for Child Eyes SafetyIRJET-  	  IoT and ML based Smart TV for Child Eyes Safety
IRJET- IoT and ML based Smart TV for Child Eyes Safety
 
IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...
IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...
IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...
 

More from IRJET Journal

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 

Recently uploaded (20)

Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Vivazz, Mieres Social Housing Design Spain
Vivazz, Mieres Social Housing Design SpainVivazz, Mieres Social Housing Design Spain
Vivazz, Mieres Social Housing Design Spain
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
 

IRJET- Hearing Loss Detection through Audiogram in Mobile Devices

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2948 Hearing loss Detection through Audiogram in Mobile Devices Manas Kulkarni1, Parth Parab2, Jainesh Singh3, Vaibhavi Chavan4, Garima Mishra5 1,2,3,4Student, Dept. of Computer Engineering, Shree L R Tiwari College of Engineering, Dist. Thane, Maharashtra, India 5Asst. Professor, Dept. of Computer Engineering, Shree L R Tiwari College of Engineering, Dist. Thane, Maharashtra, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Hearing loss detection through audiogram in mobile devices (HearAssist) is a mobile software project which is an attempt on creating an android application to demonstrate Android smartphone as an educational tool for hearing impairment. Hearing correction in Mobile devicesis a software system which aims to help people with mild to moderate hearing loss, by first creating a medically accurate audiogram report of the audibility of the user andthenusing the audiogram graph to also generate a textual reportfor the convenience of the user. Apart from this, all the reports generated across any and all devices are stored online on a database for generating and visualizing trends of hearing capabilities of users across various age groups. Key Words: Audiogram, Audiometry, Android, Hearing Aid, trends. 1. INTRODUCTION According to WHO (World Health Organization) over 466 million people in the world have some sort of hearing loss and it is estimated to go to around 900 million or One in Ten people by 2050. Hearing loss is not just limited to old people in today’s world as technology has moved so forward and auditory systems have become betterthanbefore, most ofus tend to use earphones, speakers orany relatedaudiodevices beyond the safe limit without thinking of the repercussions. This has resulted in a growing trend in some sort of hearing loss in young people ranging from 18 to as old as 25 years of age. The audiogram report is the most efficient and easily accessible generated method to detect any sort of hearing loss a person may or may not have. Since the standard hearing capacity for humans is from 20Hz to 20KHz the audiogram generating devices are designed in a particular way to play frequencies ranging from 250, 500, 1000, 2000, 4000 and 8000 Hz at decibels ranging from 0 to 100 db. Existing traditional audiogram generating devices are huge and bulky which require a specific setting and a pre- registered appointment which is more time consuming to receive the full report. Our proposed software aims to eliminate the whole process by helping the user to take up the test and generate the audiogram results in both, graphical and textual format. The reports of the conducted tests are displayed on-time on the Android powered mobile device in the comfort of the users’ home with nothing more than just a good quality of earphones to use for. 2. EXISTING SYSTEM 2.1 Traditional Audiogram and Hearing AidDevice An audiometry test can be performed at Audiology department of a hospital. A GP audiologist presence is required at the time of test conduction. These human efforts can be reduced, since no inspection is required while conducting the test on the smartphone device. The devicesat the laboratory are expensive and also require high maintenance, also the environment of the room needs to be adjusted. Overall process is tiresome of both the parties involved which involves man power and money, which we aim to eliminate. [1] [2] 2.2 Existing Software Audiogram System The existing software available in the market can be used to customize the physical hearing aid device to modify the levels of volume/volumelevel.Alsoprovidestheflexibilityto adapt according to the changing environments around the user. The feature this software lacks is Audiogram generation. On top of that the values are manually inserted to the software to generateresult.Audiogramsgenerated are only in the form of graphs which may not be totally understandable to the user. [3] [4] 3. PROPOSED SYSTEM The proposed system tends to eliminate or overcome the previous shortcomings. Here we aim to create a medically accurate audiogram for which the user has to give inputs for the frequencies he will hear through the application. We achieve this by using the same frequencies which are used when someone takes an audiogram test at a lab, but instead on a mobile device which is more than capable to output these frequencies after the which the user is asked togivean input whether he can listen to the frequencies in the particular intensities or not. Once all the frequencies are played and the user gives all the inputs, the application then creates an audiogram based on these results along with the textual report for the user to view. [8] Every test taken on the application is automatically stored on the cloud through google sheets API which can be used to
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2949 check out trends for different age groups for thehearingloss classification. 4. SYSTEM ANALYSIS 4.1 Data analysis and trends Chart-1: Google sheets data visualization Front-end layout for the user-based application 4.2 Front-end layout fortheuser-basedapplication Fig -1: Mobile based application for the user 4.3 System overview block diagram Fig -2: Functional block diagram of proposed system 4.4 Proposed system algorithm 1. Click ‘Perform Test’ to start the Audiometry test. 2. Left ear testing starts: a) Frequencies (250Hz, 500Hz, 1000Hz, 2000Hz and 4000Hz) will be played one after the other at various intensities (in dB) to generate an Audiogram. [7] b) The user has to respond with ‘Yes’ or ‘No’ according to audibility he/she can hear it or not. [7] 3. The same process will be repeated for the right ear. An audiogram will be generated using these inputs and will be displayed to the users. 4. A tabular representation is shown of the audiogram as a textual report. 5. The data collected from the user is send to google sheets along with the age category. 6. The data collected on google sheet is used to display a graph to show trends in hearing capabilities as per age groups.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2950 5. IMPLEMENTATION OF SYSTEM 5.1 Frequency Generation Required frequency is being generated using basic Digital Signal Processing methodologies. By defining duration as 5 seconds and sampling rate as 44100 Hz, we calculate number of samples and we provide required frequency which we want to generate. The frequencies range from250 Hz, 500 Hz, 1000 Hz, 2000 Hz, 4000 Hz and 8000 Hz. The selected frequency is outputted at an intensity of 40dB via earphones. The intensity is incremented by 10 if the user's response is no and decremented by 10 if the response is yes. The input values are collected in the threshold array. We create an array of samples using sampling rate and frequency of the tone, which we then convert into 16-bit PCM sound array. Now we create an object of AudioTrack class to which we pass samplerate,numberofsamplesalong with streamType, channelConfig, audioFormat and mode. This object is then written in generatedSound which is then played using play method. [10] 5.2 Audiogram Generation GraphView library is importedtoimplementreal timegraph. The input values to the graph are decided as per the user’s feedback. Each minimum value offrequencyattheparticular decibel is noted in the frequency test activity taken before the graph activity. After all the tests are conducted all the values for both the left and right ear is stored in a final array which is passed to the graphview for plotting. StaticLabelFormatter is used set labels of the X-axis and Y- axis. LineGraphSeries class is used to plot a line graph. Customized X mark has been using canvas.drawlinemethod. [9] 5.3 Data Trends Here we google the google sheets API to create a Json link which is embedded in the android code of the application, every time the user saves a report the array value of all the frequencies is automatically sent to thegooglesheetwherea new entry is created for each report. The api then automatically updates the data trends based on the data added to show relevant data visualization to analysis. 6. ADVANTAGES 1. Can be accessed anytime: The application onceinstalled can be then used as and when required. It can be used anytime and anywhere. 2. Reduction in cost factor: This replaces the massive system to conduct audiometry test. Thus, the costfactor is reduced effectively. 3. Less time consumption: Test conduction takes no more than 15 minutes. Thus, the time required for taking test is reduced significantly. 4. Sharing test results: The test results can be shared with the doctors or concerned people by the user. Thus, making it convenient for the user to share the current results by saving his/her time of taking the audiometry tests again. 7. LIMITATIONS Only air conduction test is performed, as it requires delivery of pure tone sounds through headphones or earbuds. Bone- conduction testing is not performed as it requires a bone oscillator, a small square box on the end of a metal headband. 8. APPLICATION AND ANALYSIS This particular system is designed to provide hearing aid assistance on mobile devices for people with frequency deficiency. The aim of this software system is to be reliable, efficient, economical and easy to usesothatmorepeoplecan readily use it. Digitizing this mechanism to provide a better and handsfree hearing aid system is the main goal of this proposed system. It will be easily accessible to all as it will be in the form of a mobile application. [8] Possible analytics with the system: 1. Left/right ear audibility range in Db at various frequencies. 2. Data points to be plotted for audiogram generation. 3. Audiogram graph showcasing the left and right ear frequency intensities. 4. Frequencies to be amplified for efficient hearing. 5. List of previously conducted tests 9. FUTURE SCOPE 1. Based on the results from the audiometry test we can implement Hearing Aid like boosting capabilities in the smartphone. This will allow the users to have comfortable hearing while listening to music or calls and even while watching videos 2. Currently the audiometry test can only detect Sensorineural hearing loss, although in future, methods can be implemented to also detect Conductive hearing loss. 3. Fine calibration of the output for various set of mobiles and earphones may also be possible,ifthedata regardingthe output capacity of variety of smartphones and earphones is available. 10. CONCLUSION As mobile technologies are at the brim of innovation, more and more people reach out to their mobile devices as their primary source of digital interaction. Hearing deficiency being one of the major problems the world is facing, we are compelled to take important steps towards it. Hence, this
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2951 particular application not only helps the user to give a preliminary audiogram to get an initial idea of any hearing deficiency he or she might have, this mobile application also helps in providing general awareness regarding the same to more and more people who come across this software. Storing and analyzing data provided by the users also helps us maintain a ballpark of the reports to as to better understand the demography of people and the severity of hearing deficiency all in one place. REFERENCES [1] Tao Zhang, Fred Mustiere and Christophe Micheyl, “Intelligent Hearing Aids: The Next Revolution”, 978-1- 4577-0220-4/16/$31.00 ©2016 IEEE [2] Nitya Tiwari, Prem C. Pandey, Anurag Sharma, “A Sliding-band Dynamic Range Compression for Use in Hearing Aids”, 978-1-5090-2361-1/16/$31.00 © 2016 IEEE. [3] Nitya Tiwari, Prem C. Pandey, Pandurangarao N. Kulkarni, “Real-time Implementation of Multi-band Frequency Compression for Listeners with Moderate Sensorineural Impairment”. [4] Jong Min Choi, Junil Sohn, Yunseo Ku, Dongwook Kim, and Junghak Lee, “Phoneme-Based Self Hearing Assessment on a Smartphone”, 2168-2194/$31.00 © 2013 IEEE. [5] Dong-Wook Kim,Eui-SungJung,Ki-WoongSeong,Jyung- Hyun Lee and Jin-Ho Cho, “Implementation and Verification of a Platform for Bluetooth Linked Hearing Aids System withSmartPhoneandMultimedia Devices”, © 2013 IEEE. [6] Yu-Cheng Lin, Ying-Hui Lai, Hsiu-Wen Chang, Yu Tsao, Member, IEEE, Yi-ping Chang, and Ronald Y. Chang, Member, IEEE, “SmartHear: A Smartphone-Based Remote Microphone Hearing Assistive System Using Wireless Technologies”, 1932-8184 © 2015 IEEE. [7] UT Austin's Engineering World Health Design Competition Project, https://github.com/ReeceStevens/ut_ewh_audiometer_ 2014 [8] AndroidProjectHearing, https://github.com/JunSoftware109/AndroidProjectHe aring [9] uSound(hearing assistance), https://play.google.com/store/apps/details?id=com.ne wbrick.usound&hl =en [10]Petralex hearing aid, https://play.google.com/store/apps/details?id=com.it4 you.petralex&hl=e n_IN