SlideShare a Scribd company logo
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

PDF
IRJET- Secure Online Payment with Facial Recognition using CNN
PDF
IRJET- Fish Recognition and Detection Based on Deep Learning
PDF
IRJET- Virtual Eye for Visually Blind People
PPTX
Predicting Human Count through Environmental Sensing in Closed Indoor Settings
PDF
IRJET - Gesture based Robot with Victim Detection using Audio
PDF
Artificial Bee Colony Based Image Enhancement for Color Images in Discrete Wa...
PDF
Advances dynamic pile testing technology - Independent Geoscience Pty Ltd
PDF
High precision location tracking technology in ir4.0
IRJET- Secure Online Payment with Facial Recognition using CNN
IRJET- Fish Recognition and Detection Based on Deep Learning
IRJET- Virtual Eye for Visually Blind People
Predicting Human Count through Environmental Sensing in Closed Indoor Settings
IRJET - Gesture based Robot with Victim Detection using Audio
Artificial Bee Colony Based Image Enhancement for Color Images in Discrete Wa...
Advances dynamic pile testing technology - Independent Geoscience Pty Ltd
High precision location tracking technology in ir4.0

What's hot (20)

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

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

PDF
Gs3412321244
PDF
Rehear OTC HA.pdf
PPTX
dtdtdtd4ffhfhfhffhfhhfhhfhfhfhfhffffffff
PDF
Mobile Healthcare Application
PDF
Petralex hearing aid app
PDF
Petralex hearing aid app
PDF
Petralex hearing aid app
PDF
Petralex Pro 2019
PDF
Petralex hearing aid app
PDF
C4DM Seminar 2016-07-12: Brecht De Man
PDF
Current trends in audiological practices and implications for developing coun...
PPTX
From audio to hi style, gain, & output
PDF
Petralex/Dectone hearing Aid App
PDF
Black Pink Purple Team Planning Brainstorm 3D Whiteboard Presentation (1).pdf
PDF
Petralex Hearing Aid App
PPTX
Acoustics and basic audiometry
PDF
Petralex Hearing Aid App_1
PDF
Petralex Hearing Technology
PDF
Audiometry A Model-View-Viewmodel (MVVM) Application Framework For Hearing I...
DOCX
Medical dissection lab audiometer
Gs3412321244
Rehear OTC HA.pdf
dtdtdtd4ffhfhfhffhfhhfhhfhfhfhfhffffffff
Mobile Healthcare Application
Petralex hearing aid app
Petralex hearing aid app
Petralex hearing aid app
Petralex Pro 2019
Petralex hearing aid app
C4DM Seminar 2016-07-12: Brecht De Man
Current trends in audiological practices and implications for developing coun...
From audio to hi style, gain, & output
Petralex/Dectone hearing Aid App
Black Pink Purple Team Planning Brainstorm 3D Whiteboard Presentation (1).pdf
Petralex Hearing Aid App
Acoustics and basic audiometry
Petralex Hearing Aid App_1
Petralex Hearing Technology
Audiometry A Model-View-Viewmodel (MVVM) Application Framework For Hearing I...
Medical dissection lab audiometer
Ad

More from IRJET Journal (20)

PDF
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
PDF
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
PDF
Kiona – A Smart Society Automation Project
PDF
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
PDF
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
PDF
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
PDF
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
PDF
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
PDF
BRAIN TUMOUR DETECTION AND CLASSIFICATION
PDF
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
PDF
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
PDF
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
PDF
Breast Cancer Detection using Computer Vision
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Kiona – A Smart Society Automation Project
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
BRAIN TUMOUR DETECTION AND CLASSIFICATION
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Breast Cancer Detection using Computer Vision
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...

Recently uploaded (20)

PDF
Abrasive, erosive and cavitation wear.pdf
PPTX
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PDF
Artificial Superintelligence (ASI) Alliance Vision Paper.pdf
PDF
A SYSTEMATIC REVIEW OF APPLICATIONS IN FRAUD DETECTION
PPTX
Software Engineering and software moduleing
PPTX
introduction to high performance computing
PPTX
Artificial Intelligence
PPTX
AUTOMOTIVE ENGINE MANAGEMENT (MECHATRONICS).pptx
PPTX
Management Information system : MIS-e-Business Systems.pptx
PDF
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
PDF
COURSE DESCRIPTOR OF SURVEYING R24 SYLLABUS
PDF
Design Guidelines and solutions for Plastics parts
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
PDF
Human-AI Collaboration: Balancing Agentic AI and Autonomy in Hybrid Systems
PDF
SMART SIGNAL TIMING FOR URBAN INTERSECTIONS USING REAL-TIME VEHICLE DETECTI...
PPTX
CURRICULAM DESIGN engineering FOR CSE 2025.pptx
PDF
distributed database system" (DDBS) is often used to refer to both the distri...
PDF
UNIT no 1 INTRODUCTION TO DBMS NOTES.pdf
Abrasive, erosive and cavitation wear.pdf
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
Automation-in-Manufacturing-Chapter-Introduction.pdf
Artificial Superintelligence (ASI) Alliance Vision Paper.pdf
A SYSTEMATIC REVIEW OF APPLICATIONS IN FRAUD DETECTION
Software Engineering and software moduleing
introduction to high performance computing
Artificial Intelligence
AUTOMOTIVE ENGINE MANAGEMENT (MECHATRONICS).pptx
Management Information system : MIS-e-Business Systems.pptx
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
COURSE DESCRIPTOR OF SURVEYING R24 SYLLABUS
Design Guidelines and solutions for Plastics parts
R24 SURVEYING LAB MANUAL for civil enggi
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
Human-AI Collaboration: Balancing Agentic AI and Autonomy in Hybrid Systems
SMART SIGNAL TIMING FOR URBAN INTERSECTIONS USING REAL-TIME VEHICLE DETECTI...
CURRICULAM DESIGN engineering FOR CSE 2025.pptx
distributed database system" (DDBS) is often used to refer to both the distri...
UNIT no 1 INTRODUCTION TO DBMS NOTES.pdf

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