SlideShare a Scribd company logo
1 of 3
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3770
Bone Age Estimation for Investigational Analysis
Rahul Akhade1, Jill Chawhan2, Arya Dhanorkar3, Dr. Jayashree Khanapuri4
1,2,3Student, Dept. of Electronics and Telecommunications Engineering, KJSIEIT, Sion, Mumbai
4HOD, Dept. of Electronics and Telecommunications Engineering, KJSIEIT, Sion, Mumbai
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Machine learninghasslowlyandsteadilysecured
its way in our day to day lives. Similarly, there is a great scope
for it to go hand in hand with medical science. The proposed
paper paves a way for the same. Machine learning can curb
the inconsistencies in medical science caused due to human
error. Machine learning can be applied in many disciplines of
medical science to enhance the user experience. A detailed
approach to create a Bone age detection model is proposed in
this paper. Bone age detection is an application used in
forensic analysis to estimate the victim’s age, whose age is
more than 18 years. In this model, Xception architecture is
used for transfer learning. Neural networks are custom
trained using transfer learning. The dataset used for training
the model contains around 200 pelvis bone images of different
age groups and was obtained from various hospitals and
radiologists across the country. The aim is to achieve as little
Mean Average Error (MAE) as possible in the subjects. The
final MAE obtained using Xception architecture is 12.352
years.
Key Words: MAE (Mean Average Error), CLAHE (Contrast
Limited Adaptive Histogram Equalization), CNN
(Convolutional Neural Networks), Xception Architecture.
1. INTRODUCTION
Radiologists and clinicians currently require a
significant amount of time and experience to forecast a
person's bone age from a pelvic X-ray. The automated bone
age assessment system will save time and may be utilized by
anyone without any prior knowledge of boneage prediction.
The main idea is to use a pelvis X-ray to automatically
anticipate a person's bone age(over18years)byfocusing on
the pubic symphysis area, which can be observed in the
centre of the pelvis. This can be accomplished by utilizing
deep learning neural networks to predict a person'sage,and
the accuracy of the prediction can be increased using CNN
and Transfer Learning techniques. Tanner Whitehouse
techniques are used by doctors to forecast the age of their
patients.
Predicting age is a difficult operation that takes a
long time. As a result, libraries such as 'keras,' are employed
which aid in the training of the dataset, as well as the CLAHE
approach, which aids in the enhancement of the most
significant areas of the x-rays and provides definitive
findings.
In India, a large portion of the rural population is
illiterate, and many people lack government ID credentials,
resulting in a lack of information in the government
database. It is exceedingly difficult to determine the age of a
victim who does not have government ID documents at a
crime scene, thus our bone age estimation system will assist
in determining the age quickly. This model can be used by
the forensics department during post-mortem examination.
2. LITERATURE SURVEY
Bone age of adults is determined manually using
Risser sign and iliac crest ossification process which is an
indirect measure of skeletal maturity and shows inaccuracy.
Artificial intelligence is applied in overcoming such
inconsistencies in results. Convolutional Neural Networks
(CNN) is used on pelvis X-rays for subjects above 18 years of
age.
Earlier, Tanner-Whitehouse (TW3) or the Greulich
and Pyle (G&P) method was used to estimate bone age
manually. These processes are laborious and flawed due to
the involvement of an excessive number of steps. Thus
machine learning was introduced to ease the age detection
model. S. Son[1] employed Visual Geometry Group (VGGNet)
architectureto automatetheTW3andG&Papproachesofthe
bone age assessment system, based on 13 regions of interest
of the left hand. This approach gives an accuracy of 97.6% of
the age group 2-18 years.
Another approach proposed by K. Panday[2]usesX-
rays and ultrasonography of the pelvis for manual bone age
assessment. Risser’s stagingsystemisusedintheassessment
of bone age of the age group 12-21 years, with an accuracy of
43%
Y. Li[3] have approached the use of AlexNet
architecture by focusing on the iliac crest apophysis of the
pelvis of the age group 10-25 years. This model provides an
accuracy of ±1.5 years.
N. Poojary[4] have suggested an approach based on
Xception architecture which uses X-rays of the left hand of
the age group below 18 years. Contrast Limited Adaptive
Histogram Equalization (CLAHE) is used to enhance the X-
rays, hence aggrandizing the accuracy. This system achieves
mean average error (MAE) of 8.175 months.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3771
Xception architecture used by N. Poojary[4] has 71
layers, which refines the training model and enhances the
machinelearning capabilitiesof the model. This ensuresthat
the accuracy is unmatched.
3. PROPOSED MODEL
Pelvis X-rays are provided in portable graphic network
format (.png) The images are enhanced using the Contrast
Limited Adaptive Histogram Equalization (CLAHE)andthen
the images are augmented to enhance the dataset and then
the pre-processing is done and then the steps involved are
explained below.
Fig 3.1: Regions of Interest of Pelvis X-ray
3.1 Data Collection and Augmentation
The X-ray images in the present dataset will be
augmented with a Python code to generate 18 times the
original number of images, which will boost the Xception
learning algorithm to get accurate results. Every X-ray image
is augmented 18 times by the code automatically, rotating it
10° anticlockwise each time till it is rotated 180° from the
starting point. This process helps to obtain 18 versions of a
single X-ray image at different inclinations which help the
algorithm to learn and yield highly accurate results.
Fig 3.1.1: Augmented X-rays
Fig 3.1.2: Block Diagram of a General Bone Age Prediction
3.2 Data Preprocessing
These augmented X-ray images are reshaped and
equalized to accentuatethe X-rayimage.TheseaugmentedX-
ray images are then processed by the Contrast Limited
Adaptive Histogram Equalization (CLAHE) algorithm. The
CLAHE algorithm helps to increase the contrast of the image
by converting the images into small tiles and applying
histogramequalizationonthosetileswhichthenhighlightthe
X-ray image. Ranging of these processed images helps to
retain the specific intensities and filters out the vital aspects
of the X-rays. The X-rays are then processed through the
Xception pre-processing function, which is a 71-layer deep
convolutional neural network.
3.2 Bone Age Estimation Model
Then the images are processed through a simple
neural network. An approximate age is obtained. The final
bone age is received as the output which is calculated using
the standard deviation of the whole dataset.
Fig 3.2: Block Diagram of a Pre-processing Model
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3772
4.RESULTS
The analysis obtained is as follows after examining
the different x-rays and it is listed in the tables given below.
The table 4.1 represents the model predicted MAE forthe
different age groups for both the genders. Different age
groups give out different model predicted results.
Table -1: MAE for various age groups for both genders
MAE for various age groups for both genders
Age Group Original Age
(in years)
Model Predicted
Age (in years)
20-40 26 38.257
40-60 48 37.632
60-80 69 77.612
The table 4.2 shows the model predicted MAE for
the age group 40-60 years for males.
Table -2: Age group 40-60 years (male)
Age Group Original Age
(in years)
Model Predicted Age
(in years)
40-60 48 59.932
the different age groups 40-60 and 60-80+yearsforfemales.
Table -3: Age group 40-80 years (female)
Age Group Original Age
(in years)
Model Predicted Age
(in years)
40-60 55 47.537
60-80 & above 77 89.818
The final MAE obtained using Xception architecture
is 12.352 years.
4. FUTURE SCOPE
Machine learning has a great scope in forensic
science. The results of machine learning models can be
furnished by having an abundanceofdata.Thustheaccuracy
of this algorithm can be increased by adding an immense
number of X-rays to increase the dataset. Various filters and
different pre-processing steps can be implemented to boost
the accuracy. Accuracy, efficiency and open source
availability are the focal points of this project. This will help
in reaching forensic anthropologists in all partsoftheworld.
5. CONCLUSION
Xception architecture helps us to obtain a Mean
Average Error (MAE) of 12.352 years which can also be
considered to be the accuracy of the project. Refining the
results, we obtain different MAE for bothgenders,individual
genders and different age groups.
REFERENCES
[1] S. Joon Son, Y. Song, N. Kim, Y. Do, N. Kwak, M. Sook Lee,
And B. Lee “TW3-Based Fully Automated Bone Age
Assessment System Using Deep Neural Networks”
,March 29, 2019.
[2] K. Panday, I. Khan, V. Prakash, P. Mishra, “Assessmentof
Chronological Age of Individuals using Radiological and
Ultrasonological Means”, April 2017.
[3] Y. Li, Z. Huang, X. Dong, w. Liang, H. Xue, L. Zhang, Y.
Zhang, Z. Deng, “ForensicAgeEstimationforPelvicX-ray
Images Using Deep Learning” 6 November 2018.
[4] N. Poojary, P. Pokhare, P. Poojary, C. Raghavani, Dr. J
Khanapuri, “A Novel ApproachforBoneAgeAssessment
using Deep Learning” June 2021.
The table 4.3 shows the model predicted MAE for

More Related Content

Similar to Bone Age Estimation for Investigational Analysis

Retinal Vessel Segmentation using Infinite Perimeter Active Contour with Hybr...
Retinal Vessel Segmentation using Infinite Perimeter Active Contour with Hybr...Retinal Vessel Segmentation using Infinite Perimeter Active Contour with Hybr...
Retinal Vessel Segmentation using Infinite Perimeter Active Contour with Hybr...IRJET Journal
 
IRJET - Fusion of CT and MRI for the Detection of Brain Tumor by SWT and Prob...
IRJET - Fusion of CT and MRI for the Detection of Brain Tumor by SWT and Prob...IRJET - Fusion of CT and MRI for the Detection of Brain Tumor by SWT and Prob...
IRJET - Fusion of CT and MRI for the Detection of Brain Tumor by SWT and Prob...IRJET Journal
 
APPLICATION OF CNN MODEL ON MEDICAL IMAGE
APPLICATION OF CNN MODEL ON MEDICAL IMAGEAPPLICATION OF CNN MODEL ON MEDICAL IMAGE
APPLICATION OF CNN MODEL ON MEDICAL IMAGEIRJET Journal
 
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...Performance Comparison Analysis for Medical Images Using Deep Learning Approa...
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...IRJET Journal
 
A Review Paper on Automated Brain Tumor Detection
A Review Paper on Automated Brain Tumor DetectionA Review Paper on Automated Brain Tumor Detection
A Review Paper on Automated Brain Tumor DetectionIRJET Journal
 
Brain Tumor Detection Using Deep Learning
Brain Tumor Detection Using Deep LearningBrain Tumor Detection Using Deep Learning
Brain Tumor Detection Using Deep LearningIRJET Journal
 
Breast Cancer Detection using Convolution Neural Network
Breast Cancer Detection using Convolution Neural NetworkBreast Cancer Detection using Convolution Neural Network
Breast Cancer Detection using Convolution Neural NetworkIRJET Journal
 
Trends and Techniques of Medical Image Analysis and Brain Tumor Detection
Trends and Techniques of Medical Image Analysis and Brain Tumor DetectionTrends and Techniques of Medical Image Analysis and Brain Tumor Detection
Trends and Techniques of Medical Image Analysis and Brain Tumor DetectionIRJET Journal
 
Classification of cervical spine fractures using 8 variants EfficientNet with...
Classification of cervical spine fractures using 8 variants EfficientNet with...Classification of cervical spine fractures using 8 variants EfficientNet with...
Classification of cervical spine fractures using 8 variants EfficientNet with...IJECEIAES
 
Brain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive BoostingBrain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive BoostingIRJET Journal
 
IRJET - Detection of Heamorrhage in Brain using Deep Learning
IRJET - Detection of Heamorrhage in Brain using Deep LearningIRJET - Detection of Heamorrhage in Brain using Deep Learning
IRJET - Detection of Heamorrhage in Brain using Deep LearningIRJET Journal
 
Unet 3+ For Brain Tumor Segmentation : A Study
Unet 3+ For Brain Tumor Segmentation : A StudyUnet 3+ For Brain Tumor Segmentation : A Study
Unet 3+ For Brain Tumor Segmentation : A StudyIRJET Journal
 
BRAIN TUMOR DETECTION
BRAIN TUMOR DETECTIONBRAIN TUMOR DETECTION
BRAIN TUMOR DETECTIONIRJET Journal
 
Deep Learning-based Diagnosis of Pneumonia using X-Ray Scans
Deep Learning-based Diagnosis of Pneumonia using X-Ray ScansDeep Learning-based Diagnosis of Pneumonia using X-Ray Scans
Deep Learning-based Diagnosis of Pneumonia using X-Ray ScansIRJET Journal
 
IRJET - Lung Disease Prediction using Image Processing and CNN Algorithm
IRJET -  	  Lung Disease Prediction using Image Processing and CNN AlgorithmIRJET -  	  Lung Disease Prediction using Image Processing and CNN Algorithm
IRJET - Lung Disease Prediction using Image Processing and CNN AlgorithmIRJET Journal
 
Prediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep LearningPrediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep LearningIRJET Journal
 
IRJET- Diversified Segmentation and Classification Techniques on Brain Tu...
IRJET-  	  Diversified Segmentation and Classification Techniques on Brain Tu...IRJET-  	  Diversified Segmentation and Classification Techniques on Brain Tu...
IRJET- Diversified Segmentation and Classification Techniques on Brain Tu...IRJET Journal
 
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology Images
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology ImagesDilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology Images
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology ImagesIRJET Journal
 
Brain Tumor Detection and Segmentation using UNET
Brain Tumor Detection and Segmentation using UNETBrain Tumor Detection and Segmentation using UNET
Brain Tumor Detection and Segmentation using UNETIRJET Journal
 
Pneumonia Detection Using Convolutional Neural Network Writers
Pneumonia Detection Using Convolutional Neural Network WritersPneumonia Detection Using Convolutional Neural Network Writers
Pneumonia Detection Using Convolutional Neural Network WritersIRJET Journal
 

Similar to Bone Age Estimation for Investigational Analysis (20)

Retinal Vessel Segmentation using Infinite Perimeter Active Contour with Hybr...
Retinal Vessel Segmentation using Infinite Perimeter Active Contour with Hybr...Retinal Vessel Segmentation using Infinite Perimeter Active Contour with Hybr...
Retinal Vessel Segmentation using Infinite Perimeter Active Contour with Hybr...
 
IRJET - Fusion of CT and MRI for the Detection of Brain Tumor by SWT and Prob...
IRJET - Fusion of CT and MRI for the Detection of Brain Tumor by SWT and Prob...IRJET - Fusion of CT and MRI for the Detection of Brain Tumor by SWT and Prob...
IRJET - Fusion of CT and MRI for the Detection of Brain Tumor by SWT and Prob...
 
APPLICATION OF CNN MODEL ON MEDICAL IMAGE
APPLICATION OF CNN MODEL ON MEDICAL IMAGEAPPLICATION OF CNN MODEL ON MEDICAL IMAGE
APPLICATION OF CNN MODEL ON MEDICAL IMAGE
 
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...Performance Comparison Analysis for Medical Images Using Deep Learning Approa...
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...
 
A Review Paper on Automated Brain Tumor Detection
A Review Paper on Automated Brain Tumor DetectionA Review Paper on Automated Brain Tumor Detection
A Review Paper on Automated Brain Tumor Detection
 
Brain Tumor Detection Using Deep Learning
Brain Tumor Detection Using Deep LearningBrain Tumor Detection Using Deep Learning
Brain Tumor Detection Using Deep Learning
 
Breast Cancer Detection using Convolution Neural Network
Breast Cancer Detection using Convolution Neural NetworkBreast Cancer Detection using Convolution Neural Network
Breast Cancer Detection using Convolution Neural Network
 
Trends and Techniques of Medical Image Analysis and Brain Tumor Detection
Trends and Techniques of Medical Image Analysis and Brain Tumor DetectionTrends and Techniques of Medical Image Analysis and Brain Tumor Detection
Trends and Techniques of Medical Image Analysis and Brain Tumor Detection
 
Classification of cervical spine fractures using 8 variants EfficientNet with...
Classification of cervical spine fractures using 8 variants EfficientNet with...Classification of cervical spine fractures using 8 variants EfficientNet with...
Classification of cervical spine fractures using 8 variants EfficientNet with...
 
Brain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive BoostingBrain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive Boosting
 
IRJET - Detection of Heamorrhage in Brain using Deep Learning
IRJET - Detection of Heamorrhage in Brain using Deep LearningIRJET - Detection of Heamorrhage in Brain using Deep Learning
IRJET - Detection of Heamorrhage in Brain using Deep Learning
 
Unet 3+ For Brain Tumor Segmentation : A Study
Unet 3+ For Brain Tumor Segmentation : A StudyUnet 3+ For Brain Tumor Segmentation : A Study
Unet 3+ For Brain Tumor Segmentation : A Study
 
BRAIN TUMOR DETECTION
BRAIN TUMOR DETECTIONBRAIN TUMOR DETECTION
BRAIN TUMOR DETECTION
 
Deep Learning-based Diagnosis of Pneumonia using X-Ray Scans
Deep Learning-based Diagnosis of Pneumonia using X-Ray ScansDeep Learning-based Diagnosis of Pneumonia using X-Ray Scans
Deep Learning-based Diagnosis of Pneumonia using X-Ray Scans
 
IRJET - Lung Disease Prediction using Image Processing and CNN Algorithm
IRJET -  	  Lung Disease Prediction using Image Processing and CNN AlgorithmIRJET -  	  Lung Disease Prediction using Image Processing and CNN Algorithm
IRJET - Lung Disease Prediction using Image Processing and CNN Algorithm
 
Prediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep LearningPrediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep Learning
 
IRJET- Diversified Segmentation and Classification Techniques on Brain Tu...
IRJET-  	  Diversified Segmentation and Classification Techniques on Brain Tu...IRJET-  	  Diversified Segmentation and Classification Techniques on Brain Tu...
IRJET- Diversified Segmentation and Classification Techniques on Brain Tu...
 
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology Images
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology ImagesDilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology Images
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology Images
 
Brain Tumor Detection and Segmentation using UNET
Brain Tumor Detection and Segmentation using UNETBrain Tumor Detection and Segmentation using UNET
Brain Tumor Detection and Segmentation using UNET
 
Pneumonia Detection Using Convolutional Neural Network Writers
Pneumonia Detection Using Convolutional Neural Network WritersPneumonia Detection Using Convolutional Neural Network Writers
Pneumonia Detection Using Convolutional Neural Network Writers
 

More from IRJET Journal

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...IRJET Journal
 
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 STRUCTUREIRJET Journal
 
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...IRJET Journal
 
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 CharacteristicsIRJET Journal
 
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...IRJET Journal
 
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-...IRJET Journal
 
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...IRJET Journal
 
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...IRJET Journal
 
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 ADASIRJET Journal
 
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,...IRJET Journal
 
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 ProIRJET Journal
 
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...IRJET Journal
 
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 SystemIRJET Journal
 
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 bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
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 ...IRJET Journal
 
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.IRJET Journal
 
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...IRJET Journal
 
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 DesignIRJET Journal
 
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...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

Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
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.pptxAsutosh Ranjan
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEslot gacor bisa pakai pulsa
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 

Recently uploaded (20)

Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
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
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 

Bone Age Estimation for Investigational Analysis

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3770 Bone Age Estimation for Investigational Analysis Rahul Akhade1, Jill Chawhan2, Arya Dhanorkar3, Dr. Jayashree Khanapuri4 1,2,3Student, Dept. of Electronics and Telecommunications Engineering, KJSIEIT, Sion, Mumbai 4HOD, Dept. of Electronics and Telecommunications Engineering, KJSIEIT, Sion, Mumbai ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Machine learninghasslowlyandsteadilysecured its way in our day to day lives. Similarly, there is a great scope for it to go hand in hand with medical science. The proposed paper paves a way for the same. Machine learning can curb the inconsistencies in medical science caused due to human error. Machine learning can be applied in many disciplines of medical science to enhance the user experience. A detailed approach to create a Bone age detection model is proposed in this paper. Bone age detection is an application used in forensic analysis to estimate the victim’s age, whose age is more than 18 years. In this model, Xception architecture is used for transfer learning. Neural networks are custom trained using transfer learning. The dataset used for training the model contains around 200 pelvis bone images of different age groups and was obtained from various hospitals and radiologists across the country. The aim is to achieve as little Mean Average Error (MAE) as possible in the subjects. The final MAE obtained using Xception architecture is 12.352 years. Key Words: MAE (Mean Average Error), CLAHE (Contrast Limited Adaptive Histogram Equalization), CNN (Convolutional Neural Networks), Xception Architecture. 1. INTRODUCTION Radiologists and clinicians currently require a significant amount of time and experience to forecast a person's bone age from a pelvic X-ray. The automated bone age assessment system will save time and may be utilized by anyone without any prior knowledge of boneage prediction. The main idea is to use a pelvis X-ray to automatically anticipate a person's bone age(over18years)byfocusing on the pubic symphysis area, which can be observed in the centre of the pelvis. This can be accomplished by utilizing deep learning neural networks to predict a person'sage,and the accuracy of the prediction can be increased using CNN and Transfer Learning techniques. Tanner Whitehouse techniques are used by doctors to forecast the age of their patients. Predicting age is a difficult operation that takes a long time. As a result, libraries such as 'keras,' are employed which aid in the training of the dataset, as well as the CLAHE approach, which aids in the enhancement of the most significant areas of the x-rays and provides definitive findings. In India, a large portion of the rural population is illiterate, and many people lack government ID credentials, resulting in a lack of information in the government database. It is exceedingly difficult to determine the age of a victim who does not have government ID documents at a crime scene, thus our bone age estimation system will assist in determining the age quickly. This model can be used by the forensics department during post-mortem examination. 2. LITERATURE SURVEY Bone age of adults is determined manually using Risser sign and iliac crest ossification process which is an indirect measure of skeletal maturity and shows inaccuracy. Artificial intelligence is applied in overcoming such inconsistencies in results. Convolutional Neural Networks (CNN) is used on pelvis X-rays for subjects above 18 years of age. Earlier, Tanner-Whitehouse (TW3) or the Greulich and Pyle (G&P) method was used to estimate bone age manually. These processes are laborious and flawed due to the involvement of an excessive number of steps. Thus machine learning was introduced to ease the age detection model. S. Son[1] employed Visual Geometry Group (VGGNet) architectureto automatetheTW3andG&Papproachesofthe bone age assessment system, based on 13 regions of interest of the left hand. This approach gives an accuracy of 97.6% of the age group 2-18 years. Another approach proposed by K. Panday[2]usesX- rays and ultrasonography of the pelvis for manual bone age assessment. Risser’s stagingsystemisusedintheassessment of bone age of the age group 12-21 years, with an accuracy of 43% Y. Li[3] have approached the use of AlexNet architecture by focusing on the iliac crest apophysis of the pelvis of the age group 10-25 years. This model provides an accuracy of ±1.5 years. N. Poojary[4] have suggested an approach based on Xception architecture which uses X-rays of the left hand of the age group below 18 years. Contrast Limited Adaptive Histogram Equalization (CLAHE) is used to enhance the X- rays, hence aggrandizing the accuracy. This system achieves mean average error (MAE) of 8.175 months.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3771 Xception architecture used by N. Poojary[4] has 71 layers, which refines the training model and enhances the machinelearning capabilitiesof the model. This ensuresthat the accuracy is unmatched. 3. PROPOSED MODEL Pelvis X-rays are provided in portable graphic network format (.png) The images are enhanced using the Contrast Limited Adaptive Histogram Equalization (CLAHE)andthen the images are augmented to enhance the dataset and then the pre-processing is done and then the steps involved are explained below. Fig 3.1: Regions of Interest of Pelvis X-ray 3.1 Data Collection and Augmentation The X-ray images in the present dataset will be augmented with a Python code to generate 18 times the original number of images, which will boost the Xception learning algorithm to get accurate results. Every X-ray image is augmented 18 times by the code automatically, rotating it 10° anticlockwise each time till it is rotated 180° from the starting point. This process helps to obtain 18 versions of a single X-ray image at different inclinations which help the algorithm to learn and yield highly accurate results. Fig 3.1.1: Augmented X-rays Fig 3.1.2: Block Diagram of a General Bone Age Prediction 3.2 Data Preprocessing These augmented X-ray images are reshaped and equalized to accentuatethe X-rayimage.TheseaugmentedX- ray images are then processed by the Contrast Limited Adaptive Histogram Equalization (CLAHE) algorithm. The CLAHE algorithm helps to increase the contrast of the image by converting the images into small tiles and applying histogramequalizationonthosetileswhichthenhighlightthe X-ray image. Ranging of these processed images helps to retain the specific intensities and filters out the vital aspects of the X-rays. The X-rays are then processed through the Xception pre-processing function, which is a 71-layer deep convolutional neural network. 3.2 Bone Age Estimation Model Then the images are processed through a simple neural network. An approximate age is obtained. The final bone age is received as the output which is calculated using the standard deviation of the whole dataset. Fig 3.2: Block Diagram of a Pre-processing Model
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 04 | Apr 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3772 4.RESULTS The analysis obtained is as follows after examining the different x-rays and it is listed in the tables given below. The table 4.1 represents the model predicted MAE forthe different age groups for both the genders. Different age groups give out different model predicted results. Table -1: MAE for various age groups for both genders MAE for various age groups for both genders Age Group Original Age (in years) Model Predicted Age (in years) 20-40 26 38.257 40-60 48 37.632 60-80 69 77.612 The table 4.2 shows the model predicted MAE for the age group 40-60 years for males. Table -2: Age group 40-60 years (male) Age Group Original Age (in years) Model Predicted Age (in years) 40-60 48 59.932 the different age groups 40-60 and 60-80+yearsforfemales. Table -3: Age group 40-80 years (female) Age Group Original Age (in years) Model Predicted Age (in years) 40-60 55 47.537 60-80 & above 77 89.818 The final MAE obtained using Xception architecture is 12.352 years. 4. FUTURE SCOPE Machine learning has a great scope in forensic science. The results of machine learning models can be furnished by having an abundanceofdata.Thustheaccuracy of this algorithm can be increased by adding an immense number of X-rays to increase the dataset. Various filters and different pre-processing steps can be implemented to boost the accuracy. Accuracy, efficiency and open source availability are the focal points of this project. This will help in reaching forensic anthropologists in all partsoftheworld. 5. CONCLUSION Xception architecture helps us to obtain a Mean Average Error (MAE) of 12.352 years which can also be considered to be the accuracy of the project. Refining the results, we obtain different MAE for bothgenders,individual genders and different age groups. REFERENCES [1] S. Joon Son, Y. Song, N. Kim, Y. Do, N. Kwak, M. Sook Lee, And B. Lee “TW3-Based Fully Automated Bone Age Assessment System Using Deep Neural Networks” ,March 29, 2019. [2] K. Panday, I. Khan, V. Prakash, P. Mishra, “Assessmentof Chronological Age of Individuals using Radiological and Ultrasonological Means”, April 2017. [3] Y. Li, Z. Huang, X. Dong, w. Liang, H. Xue, L. Zhang, Y. Zhang, Z. Deng, “ForensicAgeEstimationforPelvicX-ray Images Using Deep Learning” 6 November 2018. [4] N. Poojary, P. Pokhare, P. Poojary, C. Raghavani, Dr. J Khanapuri, “A Novel ApproachforBoneAgeAssessment using Deep Learning” June 2021. The table 4.3 shows the model predicted MAE for