SlideShare uma empresa Scribd logo
1 de 4
Baixar para ler 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 2067
DAMAGE ASSESSMENT FOR CAR INSURANCE
Pranali Patil1, Harsha Pawar2, Mrunali Walanj3, Priyanka Giri4
1Professor, Dept. of Computer Engineering, NHITM Maharashtra, India
2,3,4Student, Dept. of Computer Engineering, NHITM Maharashtra, India
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - Over the last few years, for the auto
insurance claims process, improvements in the First
Notice of Loss and rapidity in the investigation and
evaluation of claims could drive significant values by
reducing loss adjustment expense. Image based vehicle
insurance processing is an important area with large
scope for automation. In this report we are going to
consider the problemofcardamageclassification,where
some of the categories can be fine-granular. We explore
deep learning-based techniques forthispurpose.Success
in this will allow some cases to proceed without human
surveyor, while others to proceed more efficiently, thus
ultimately shortening the time between the first Notice
of Loss and the final payout. In the proposed cardamage
classification model initially, we try directly training a
CNN. However, due to small set of labeled data, it does
not work well. Then, we explore the effect of domain
specific pre-training followed by fine-tuning. Finally, we
experiment with transfer learning and ensemble
learning. Experimental results show that transfer
learning works better than domain specific fine-tuning.
We achieve accuracy of 89.5% with combination of
transfer and ensemble learning. Followed by the
estimate damage cost calculation according the
prediction of damaged car parts
Key Words: Car damage classification, CNN, transfer
learning, convolutional auto-encoders
1. INTRODUCTION
Currently, AI is advancing at a great pace and deep
learning is one of the contributors to that. It is good to
understand the basics of deep learning as they are
changing the world we live. Deep learningisasub-field
of machine learning dealing with algorithms inspired
by the structure and function of the brain called
artificial neural networks. In other words, It mirrors
the functioning of our brains Deep learning algorithms
are similar to how nervous system structured where
each neuron connected each other and passing
information. One of the differences between machine
learning and deep learning model is on the feature
extraction area. Featureextractionisdonebyhumanin
machine learning whereasdeeplearningmodelfigures
out by itself Today, in the car insurance industry, a lot
of money is wasted due to claims leakage. Money lost
through claims management inefficiencies that
ultimately result from failures in existing processes
(manual and automated). In other words, it's the
difference between what you did spend and what you
should have spent on a claim. The cause can be
procedural,suchasfrominefficientclaimprocessingor
improper/errant payments,orfromhumanerror,such
as poor decision-making, customer service, or even
fraud. Claim Leakage is often discovered through an
audit of closed claim files. CNN is used as the default
model for anything to deal with images. Hence in this
project, we employ Convolutional Neural Network
(CNN) based methods for classification of car damage
types. Specifically, we consider common damagetypes
such as bumper dent, door dent, glass shatter,
headlamp broken, taillampbroken,scratchandsmash.
Nowadays there are papers that have mentioned the
use of Recurrent Neural Network (RNN) for the image
recognition. TraditionallyRNNs are being usedfortext
and speech recognition. According to study after
experimenting with many techniques such as directly
training a CNN, pre-training a CNN using autoencoder
followed by fine-tuning, using transfer learning from
large CNN's trained on ImageNet and building an
ensemble classifier on top of the set of pre-trained
classifiers. Weobservethattransferlearningcombined
with ensemble learning works the best.
Figure 1: Basic architecture of CNN
2. LITERATURE SURVEY
[1] Srimal Jayawardena et al., “Image based automatic
vehicle damage detection", Ph.D. thesis, Australian
National University, 2013.
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 2068
[2] F Samadzadegan and H Rastiveisi, “Automatic
detection and classification of damaged buildings,
using high resolution satellite imagery and vector
data,” The International Archives of the
Photogrammetry, Remote Sensing and Spatial
Information Sciences, vol. 37, pp. 415– 420,2008.
[3] K Kouchi and F Yamazaki, “Damagedetectionbased
on object-based segmentation and classification from
high resolution satellite images for the 2003
boumerdes, algeria earthquake,” in Proceedings of the
26th Asian conference on Remote Sensing, Hanoi,
Vietnam, 2005.
[4] Ellen Rathje and Melba Crawford, “Using high
resolution satellite imagery to detect damage from the
2003 northern algeria earthquake,” in 13th World
Conference on Earthquake Engineering, August, 2004,
pp. 1–6.
[5] Michael Giering Mark R. Gurvich Soumalya Sarkar,
Kishore K. Reddy, “Deep learning for structural health
monitoring: A damage characterizationapplication,”in
Annual Conference of the Prognostics and Health
Management Society, 2016.
[6] Dumitru Erhan, Yoshua Bengio, Aaron Courville,
Pierre-Antoine Manzagol, Pascal Vincent, and Samy
Bengio, “Why does unsupervised pre-training help
deep learning?” Journal of Machine LearningResearch,
vol. 11, no. Feb, pp. 625–660, 2010.
3. Proposed Work
The overall Damage Assessment for Car Insurance
(DACI) can be divided in four parts:
 Collecting Datasets
 Training and Testing Of Datasets
 Backend
● Collecting Datasets
We have collected ten commonly observed types of
damages such as Bumper, door, door glass, grille,
headlamp, hood, mirror, roof, taillamp,andwindshield
in addition we also collected some images which does
not belong to damage class, some images were
collected from web and somewhere manually
annotated.
● Training and Testing of Datasets
3000 plus images were taken for training and 200-300
for testing. we synthetically enlarged the dataset
approx. five times by appending it with random
rotations (between -20 to 20 degrees) and horizontal
fliptransformations.Fortheclassificationexperiments,
the dataset was randomly split into 80%-20% where
80% was used for training and 20% was used for
testing.
● Backend
We createdseparatepythonprogramsforeachofthose
commonly observed car parts forrecognizinginimage
whether that car part is damaged or not, and will tell if
it is not present in image.
 Generating a CNN model
The created python programs for each of car parts
were used to train the CNN model for recognizing in
image whether that car partisdamagedornot,andwill
tell if it is not present in image. The model consist of
ten layers Conv1-Pool1-Conv2-Pool2-Conv3-Pool3-
Conv4Pool4-FC-Softmax where Conv, Pool, FC and
SoftMax denotes convolution layer, pooling layer, fully
connected layer and a SoftMax layer respectively.Each
convolutional layer has 16 filters of size 5 × 5. A RELU
non-linearity is used for every convolutionallayer.The
total number of weights in the network are approx.
423K
Figure 2: CNN Layers
Car image will be passed through all these 10 models
one by one, and each model will give its respective
output in following three classes
-Damaged part
- Undamaged part
-Missing part
4. RESULTS
User will upload a car image or images and number
plate of car, and we extract car registration number in
text form using Googles Tesseract OCR.
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 2069
Figure 3: Registration/login page
After Login output of prediction in three classes -
Damaged part, Undamaged part, Missing part
Figure 4: Classification of car parts
User will select the correct number among 3 outputs
which our system generated.
Figure 5: Number plate selection
And then This registration number will be passed to
RTO, and following fields will be fetched from RTO —
Figure 6: Output from RTO
We are calculating cost for the parts which are
damaged. As each make and model of the car have
different costs, we canuseRTOsfetchedinformationto
specify make andmodel of the car,andfetchrespective
models’ costs from database.
Figure 7: Cost of Damaged parts
And then report of estimation in pdf format will be
generated
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 2070
Figure 8: Downloading option for reports
Figure 9: Report of damaged car
5. CONCLUSION
This paper has generally discussed the design and
implementation of damage assessment for car
insurance (DACI) by developing deep learning car
damage classification model on website development
platform where user will upload image or images of
damaged car with help of phone’s camera. then
according to damage calculation, the total cost of car
will be displayed in a report format. This system is
tested over a wide range of images yielding high
accuracy rate
6. REFERENCES
[1] Srimal Jayawardena et al., “Image based automatic
vehicle damage detection", Ph.D. thesis, Australian
National University, 2013.
[2] F Samadzadegan and H Rastiveisi, “Automatic
detection and classification of damaged buildings,
using high resolution satellite imagery and vector
data,” The International Archives of the
Photogrammetry, Remote Sensing and Spatial
Information Sciences, vol. 37, pp. 415– 420,2008.
[3] K Kouchi and F Yamazaki, “Damagedetectionbased
on object-based segmentation and classification from
high resolution satellite images for the 2003
boumerdes, algeria earthquake,” in Proceedings of the
26th Asian conference on Remote Sensing, Hanoi,
Vietnam, 2005.
[4] Ellen Rathje and Melba Crawford, “Using high
resolution satellite imagery to detect damage from the
2003 northern algeria earthquake,” in 13th World
Conference on Earthquake Engineering, August, 2004,
pp. 1–6.
[5] Michael Giering Mark R. Gurvich Soumalya Sarkar,
Kishore K. Reddy, “Deep learning for structural health
monitoring: A damage characterizationapplication,”in
Annual Conference of the Prognostics and Health
Management Society, 2016.
[6] Dumitru Erhan, Yoshua Bengio, Aaron Courville,
Pierre-Antoine Manzagol, Pascal Vincent, and Samy
Bengio, “Why does unsupervised pre-training help
deep learning?” Journal of Machine LearningResearch,
vol. 11, no. Feb, pp. 625–660, 2010.

Mais conteúdo relacionado

Mais procurados

IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...IRJET Journal
 
Automated License Plate detection and Speed estimation of Vehicle Using Machi...
Automated License Plate detection and Speed estimation of Vehicle Using Machi...Automated License Plate detection and Speed estimation of Vehicle Using Machi...
Automated License Plate detection and Speed estimation of Vehicle Using Machi...ijtsrd
 
IRJET- Traffic Sign and Drowsiness Detection using Open-CV
IRJET- Traffic Sign and Drowsiness Detection using Open-CVIRJET- Traffic Sign and Drowsiness Detection using Open-CV
IRJET- Traffic Sign and Drowsiness Detection using Open-CVIRJET Journal
 
IRJET- Tracking and Recognition of Multiple Human and Non-Human Activites
IRJET- Tracking and Recognition of Multiple Human and Non-Human ActivitesIRJET- Tracking and Recognition of Multiple Human and Non-Human Activites
IRJET- Tracking and Recognition of Multiple Human and Non-Human ActivitesIRJET Journal
 
IRJET- Library Management System with Facial Biometric Authentication
IRJET- Library Management System with Facial Biometric AuthenticationIRJET- Library Management System with Facial Biometric Authentication
IRJET- Library Management System with Facial Biometric AuthenticationIRJET Journal
 
IRJET- Drowziness Detection with Alarm Monitoring
IRJET-  	  Drowziness Detection with Alarm MonitoringIRJET-  	  Drowziness Detection with Alarm Monitoring
IRJET- Drowziness Detection with Alarm MonitoringIRJET Journal
 
IRJET- Identification of Accident Prone Spots using Mobile Application
IRJET- Identification of Accident Prone Spots using Mobile ApplicationIRJET- Identification of Accident Prone Spots using Mobile Application
IRJET- Identification of Accident Prone Spots using Mobile ApplicationIRJET Journal
 
IRJET- Review on Vehicle Detection and Tracking for High Sensitive Area and E...
IRJET- Review on Vehicle Detection and Tracking for High Sensitive Area and E...IRJET- Review on Vehicle Detection and Tracking for High Sensitive Area and E...
IRJET- Review on Vehicle Detection and Tracking for High Sensitive Area and E...IRJET Journal
 
License Plate Recognition System for Moving Vehicles Using ­Laplacian Edge De...
License Plate Recognition System for Moving Vehicles Using ­Laplacian Edge De...License Plate Recognition System for Moving Vehicles Using ­Laplacian Edge De...
License Plate Recognition System for Moving Vehicles Using ­Laplacian Edge De...IRJET Journal
 
IRJET - Ignition Interlocking Seat Belt
IRJET - Ignition Interlocking Seat BeltIRJET - Ignition Interlocking Seat Belt
IRJET - Ignition Interlocking Seat BeltIRJET Journal
 
IRJET- Road Traffic Prediction using Machine Learning
IRJET- Road Traffic Prediction using Machine LearningIRJET- Road Traffic Prediction using Machine Learning
IRJET- Road Traffic Prediction using Machine LearningIRJET Journal
 
A Model for Car Plate Recognition & Speed Tracking (CPR-STS) using Machine Le...
A Model for Car Plate Recognition & Speed Tracking (CPR-STS) using Machine Le...A Model for Car Plate Recognition & Speed Tracking (CPR-STS) using Machine Le...
A Model for Car Plate Recognition & Speed Tracking (CPR-STS) using Machine Le...CSCJournals
 
FINGERPRINT CLASSIFICATION MODEL BASED ON NEW COMBINATION OF PARTICLE SWARM O...
FINGERPRINT CLASSIFICATION MODEL BASED ON NEW COMBINATION OF PARTICLE SWARM O...FINGERPRINT CLASSIFICATION MODEL BASED ON NEW COMBINATION OF PARTICLE SWARM O...
FINGERPRINT CLASSIFICATION MODEL BASED ON NEW COMBINATION OF PARTICLE SWARM O...IAEME Publication
 
IRJET- Smart Traffic System
IRJET- Smart Traffic SystemIRJET- Smart Traffic System
IRJET- Smart Traffic SystemIRJET Journal
 
IRJET- College Campus Event Management System
IRJET- College Campus Event Management SystemIRJET- College Campus Event Management System
IRJET- College Campus Event Management SystemIRJET Journal
 
Passenger Screening using Deep Learning and Artificial Neural Networks
Passenger Screening using Deep Learning and Artificial Neural NetworksPassenger Screening using Deep Learning and Artificial Neural Networks
Passenger Screening using Deep Learning and Artificial Neural NetworksDr. Amarjeet Singh
 
4Data Mining Approach of Accident Occurrences Identification with Effective M...
4Data Mining Approach of Accident Occurrences Identification with Effective M...4Data Mining Approach of Accident Occurrences Identification with Effective M...
4Data Mining Approach of Accident Occurrences Identification with Effective M...IJECEIAES
 

Mais procurados (20)

IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
 
Automated License Plate detection and Speed estimation of Vehicle Using Machi...
Automated License Plate detection and Speed estimation of Vehicle Using Machi...Automated License Plate detection and Speed estimation of Vehicle Using Machi...
Automated License Plate detection and Speed estimation of Vehicle Using Machi...
 
IRJET- Traffic Sign and Drowsiness Detection using Open-CV
IRJET- Traffic Sign and Drowsiness Detection using Open-CVIRJET- Traffic Sign and Drowsiness Detection using Open-CV
IRJET- Traffic Sign and Drowsiness Detection using Open-CV
 
IRJET- Tracking and Recognition of Multiple Human and Non-Human Activites
IRJET- Tracking and Recognition of Multiple Human and Non-Human ActivitesIRJET- Tracking and Recognition of Multiple Human and Non-Human Activites
IRJET- Tracking and Recognition of Multiple Human and Non-Human Activites
 
IRJET- Library Management System with Facial Biometric Authentication
IRJET- Library Management System with Facial Biometric AuthenticationIRJET- Library Management System with Facial Biometric Authentication
IRJET- Library Management System with Facial Biometric Authentication
 
term paper 1
term paper 1term paper 1
term paper 1
 
IRJET- Drowziness Detection with Alarm Monitoring
IRJET-  	  Drowziness Detection with Alarm MonitoringIRJET-  	  Drowziness Detection with Alarm Monitoring
IRJET- Drowziness Detection with Alarm Monitoring
 
IRJET- Identification of Accident Prone Spots using Mobile Application
IRJET- Identification of Accident Prone Spots using Mobile ApplicationIRJET- Identification of Accident Prone Spots using Mobile Application
IRJET- Identification of Accident Prone Spots using Mobile Application
 
IRJET- Review on Vehicle Detection and Tracking for High Sensitive Area and E...
IRJET- Review on Vehicle Detection and Tracking for High Sensitive Area and E...IRJET- Review on Vehicle Detection and Tracking for High Sensitive Area and E...
IRJET- Review on Vehicle Detection and Tracking for High Sensitive Area and E...
 
License Plate Recognition System for Moving Vehicles Using ­Laplacian Edge De...
License Plate Recognition System for Moving Vehicles Using ­Laplacian Edge De...License Plate Recognition System for Moving Vehicles Using ­Laplacian Edge De...
License Plate Recognition System for Moving Vehicles Using ­Laplacian Edge De...
 
IRJET - Ignition Interlocking Seat Belt
IRJET - Ignition Interlocking Seat BeltIRJET - Ignition Interlocking Seat Belt
IRJET - Ignition Interlocking Seat Belt
 
Attendance Monitoring Using Face Recognition with Message Alert
Attendance Monitoring Using Face Recognition with Message AlertAttendance Monitoring Using Face Recognition with Message Alert
Attendance Monitoring Using Face Recognition with Message Alert
 
DRIVER ASSISTANCE FOR HEARING IMPAIRED PEOPLE USING AUGMENTED REALITY
DRIVER ASSISTANCE FOR HEARING IMPAIRED  PEOPLE USING AUGMENTED REALITYDRIVER ASSISTANCE FOR HEARING IMPAIRED  PEOPLE USING AUGMENTED REALITY
DRIVER ASSISTANCE FOR HEARING IMPAIRED PEOPLE USING AUGMENTED REALITY
 
IRJET- Road Traffic Prediction using Machine Learning
IRJET- Road Traffic Prediction using Machine LearningIRJET- Road Traffic Prediction using Machine Learning
IRJET- Road Traffic Prediction using Machine Learning
 
A Model for Car Plate Recognition & Speed Tracking (CPR-STS) using Machine Le...
A Model for Car Plate Recognition & Speed Tracking (CPR-STS) using Machine Le...A Model for Car Plate Recognition & Speed Tracking (CPR-STS) using Machine Le...
A Model for Car Plate Recognition & Speed Tracking (CPR-STS) using Machine Le...
 
FINGERPRINT CLASSIFICATION MODEL BASED ON NEW COMBINATION OF PARTICLE SWARM O...
FINGERPRINT CLASSIFICATION MODEL BASED ON NEW COMBINATION OF PARTICLE SWARM O...FINGERPRINT CLASSIFICATION MODEL BASED ON NEW COMBINATION OF PARTICLE SWARM O...
FINGERPRINT CLASSIFICATION MODEL BASED ON NEW COMBINATION OF PARTICLE SWARM O...
 
IRJET- Smart Traffic System
IRJET- Smart Traffic SystemIRJET- Smart Traffic System
IRJET- Smart Traffic System
 
IRJET- College Campus Event Management System
IRJET- College Campus Event Management SystemIRJET- College Campus Event Management System
IRJET- College Campus Event Management System
 
Passenger Screening using Deep Learning and Artificial Neural Networks
Passenger Screening using Deep Learning and Artificial Neural NetworksPassenger Screening using Deep Learning and Artificial Neural Networks
Passenger Screening using Deep Learning and Artificial Neural Networks
 
4Data Mining Approach of Accident Occurrences Identification with Effective M...
4Data Mining Approach of Accident Occurrences Identification with Effective M...4Data Mining Approach of Accident Occurrences Identification with Effective M...
4Data Mining Approach of Accident Occurrences Identification with Effective M...
 

Semelhante a IRJET- Damage Assessment for Car Insurance

CAR DAMAGE DETECTION AND PRICE PREDICTION USING DEEP LEARNING
CAR DAMAGE DETECTION AND PRICE PREDICTION USING DEEP LEARNINGCAR DAMAGE DETECTION AND PRICE PREDICTION USING DEEP LEARNING
CAR DAMAGE DETECTION AND PRICE PREDICTION USING DEEP LEARNINGIRJET Journal
 
IRJET- Number Plate Extraction from Vehicle Front View Image using Image ...
IRJET-  	  Number Plate Extraction from Vehicle Front View Image using Image ...IRJET-  	  Number Plate Extraction from Vehicle Front View Image using Image ...
IRJET- Number Plate Extraction from Vehicle Front View Image using Image ...IRJET Journal
 
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...IRJET Journal
 
IRJET - Accident Intimation System using Image Processing
IRJET - Accident Intimation System using Image ProcessingIRJET - Accident Intimation System using Image Processing
IRJET - Accident Intimation System using Image ProcessingIRJET Journal
 
IRJET- Accident Information Mining and Insurance Dispute Resolution
IRJET- Accident Information Mining and Insurance Dispute ResolutionIRJET- Accident Information Mining and Insurance Dispute Resolution
IRJET- Accident Information Mining and Insurance Dispute ResolutionIRJET Journal
 
IRJET - Autonomous Navigation System using Deep Learning
IRJET -  	  Autonomous Navigation System using Deep LearningIRJET -  	  Autonomous Navigation System using Deep Learning
IRJET - Autonomous Navigation System using Deep LearningIRJET Journal
 
Car Damage Assessment to Automate Insurance Claim
Car Damage Assessment to Automate Insurance ClaimCar Damage Assessment to Automate Insurance Claim
Car Damage Assessment to Automate Insurance ClaimIRJET Journal
 
Artificial Intelligence based CCTV accident detection and nearby patrol alert...
Artificial Intelligence based CCTV accident detection and nearby patrol alert...Artificial Intelligence based CCTV accident detection and nearby patrol alert...
Artificial Intelligence based CCTV accident detection and nearby patrol alert...IRJET Journal
 
IRJET - Automobile Black Box System for Vehicle Accident Analysis
IRJET - Automobile Black Box System for Vehicle Accident AnalysisIRJET - Automobile Black Box System for Vehicle Accident Analysis
IRJET - Automobile Black Box System for Vehicle Accident AnalysisIRJET Journal
 
IRJET- Traffic Sign Detection, Recognition and Notification System using ...
IRJET-  	  Traffic Sign Detection, Recognition and Notification System using ...IRJET-  	  Traffic Sign Detection, Recognition and Notification System using ...
IRJET- Traffic Sign Detection, Recognition and Notification System using ...IRJET Journal
 
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNINGTRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNINGIRJET Journal
 
AUTONOMOUS SELF DRIVING CARS
AUTONOMOUS SELF DRIVING CARSAUTONOMOUS SELF DRIVING CARS
AUTONOMOUS SELF DRIVING CARSIRJET Journal
 
A TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRY
A TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRYA TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRY
A TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRYIRJET Journal
 
Distracted Driver Detection
Distracted Driver DetectionDistracted Driver Detection
Distracted Driver DetectionIRJET Journal
 
Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...
Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...
Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...IRJET Journal
 
TRAFFIC RULES VIOLATION DETECTION SYSTEM
TRAFFIC RULES VIOLATION DETECTION SYSTEMTRAFFIC RULES VIOLATION DETECTION SYSTEM
TRAFFIC RULES VIOLATION DETECTION SYSTEMIRJET Journal
 
IRJET- Reckoning the Vehicle using MATLAB
IRJET- Reckoning the Vehicle using MATLABIRJET- Reckoning the Vehicle using MATLAB
IRJET- Reckoning the Vehicle using MATLABIRJET Journal
 
IRJET- Classification of Assembly (W-Section) using Artificial Intelligence
IRJET- Classification of Assembly (W-Section) using Artificial IntelligenceIRJET- Classification of Assembly (W-Section) using Artificial Intelligence
IRJET- Classification of Assembly (W-Section) using Artificial IntelligenceIRJET Journal
 
Vision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep LearningVision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep LearningIRJET Journal
 

Semelhante a IRJET- Damage Assessment for Car Insurance (20)

CAR DAMAGE DETECTION AND PRICE PREDICTION USING DEEP LEARNING
CAR DAMAGE DETECTION AND PRICE PREDICTION USING DEEP LEARNINGCAR DAMAGE DETECTION AND PRICE PREDICTION USING DEEP LEARNING
CAR DAMAGE DETECTION AND PRICE PREDICTION USING DEEP LEARNING
 
IRJET- Number Plate Extraction from Vehicle Front View Image using Image ...
IRJET-  	  Number Plate Extraction from Vehicle Front View Image using Image ...IRJET-  	  Number Plate Extraction from Vehicle Front View Image using Image ...
IRJET- Number Plate Extraction from Vehicle Front View Image using Image ...
 
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...
 
IRJET - Accident Intimation System using Image Processing
IRJET - Accident Intimation System using Image ProcessingIRJET - Accident Intimation System using Image Processing
IRJET - Accident Intimation System using Image Processing
 
IRJET- Accident Information Mining and Insurance Dispute Resolution
IRJET- Accident Information Mining and Insurance Dispute ResolutionIRJET- Accident Information Mining and Insurance Dispute Resolution
IRJET- Accident Information Mining and Insurance Dispute Resolution
 
IRJET - Autonomous Navigation System using Deep Learning
IRJET -  	  Autonomous Navigation System using Deep LearningIRJET -  	  Autonomous Navigation System using Deep Learning
IRJET - Autonomous Navigation System using Deep Learning
 
Car Damage Assessment to Automate Insurance Claim
Car Damage Assessment to Automate Insurance ClaimCar Damage Assessment to Automate Insurance Claim
Car Damage Assessment to Automate Insurance Claim
 
Artificial Intelligence based CCTV accident detection and nearby patrol alert...
Artificial Intelligence based CCTV accident detection and nearby patrol alert...Artificial Intelligence based CCTV accident detection and nearby patrol alert...
Artificial Intelligence based CCTV accident detection and nearby patrol alert...
 
IRJET - Automobile Black Box System for Vehicle Accident Analysis
IRJET - Automobile Black Box System for Vehicle Accident AnalysisIRJET - Automobile Black Box System for Vehicle Accident Analysis
IRJET - Automobile Black Box System for Vehicle Accident Analysis
 
IRJET- Traffic Sign Detection, Recognition and Notification System using ...
IRJET-  	  Traffic Sign Detection, Recognition and Notification System using ...IRJET-  	  Traffic Sign Detection, Recognition and Notification System using ...
IRJET- Traffic Sign Detection, Recognition and Notification System using ...
 
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNINGTRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
 
AUTONOMOUS SELF DRIVING CARS
AUTONOMOUS SELF DRIVING CARSAUTONOMOUS SELF DRIVING CARS
AUTONOMOUS SELF DRIVING CARS
 
A TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRY
A TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRYA TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRY
A TECHNICAL REVIEW ON USE OF VEHICLE MONITORING SYSTEM IN CONSTRUCTION INDUSTRY
 
Distracted Driver Detection
Distracted Driver DetectionDistracted Driver Detection
Distracted Driver Detection
 
Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...
Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...
Automatic And Fast Vehicle Number Plate Detection with Owner Identification U...
 
Self Driving Car
Self Driving CarSelf Driving Car
Self Driving Car
 
TRAFFIC RULES VIOLATION DETECTION SYSTEM
TRAFFIC RULES VIOLATION DETECTION SYSTEMTRAFFIC RULES VIOLATION DETECTION SYSTEM
TRAFFIC RULES VIOLATION DETECTION SYSTEM
 
IRJET- Reckoning the Vehicle using MATLAB
IRJET- Reckoning the Vehicle using MATLABIRJET- Reckoning the Vehicle using MATLAB
IRJET- Reckoning the Vehicle using MATLAB
 
IRJET- Classification of Assembly (W-Section) using Artificial Intelligence
IRJET- Classification of Assembly (W-Section) using Artificial IntelligenceIRJET- Classification of Assembly (W-Section) using Artificial Intelligence
IRJET- Classification of Assembly (W-Section) using Artificial Intelligence
 
Vision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep LearningVision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
 

Mais de 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
 

Mais de 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...
 

Último

data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Arindam Chakraborty, Ph.D., P.E. (CA, TX)
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf203318pmpc
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationBhangaleSonal
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayEpec Engineered Technologies
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
 

Último (20)

Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
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
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
(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
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
(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
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 

IRJET- Damage Assessment for Car Insurance

  • 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 2067 DAMAGE ASSESSMENT FOR CAR INSURANCE Pranali Patil1, Harsha Pawar2, Mrunali Walanj3, Priyanka Giri4 1Professor, Dept. of Computer Engineering, NHITM Maharashtra, India 2,3,4Student, Dept. of Computer Engineering, NHITM Maharashtra, India ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - Over the last few years, for the auto insurance claims process, improvements in the First Notice of Loss and rapidity in the investigation and evaluation of claims could drive significant values by reducing loss adjustment expense. Image based vehicle insurance processing is an important area with large scope for automation. In this report we are going to consider the problemofcardamageclassification,where some of the categories can be fine-granular. We explore deep learning-based techniques forthispurpose.Success in this will allow some cases to proceed without human surveyor, while others to proceed more efficiently, thus ultimately shortening the time between the first Notice of Loss and the final payout. In the proposed cardamage classification model initially, we try directly training a CNN. However, due to small set of labeled data, it does not work well. Then, we explore the effect of domain specific pre-training followed by fine-tuning. Finally, we experiment with transfer learning and ensemble learning. Experimental results show that transfer learning works better than domain specific fine-tuning. We achieve accuracy of 89.5% with combination of transfer and ensemble learning. Followed by the estimate damage cost calculation according the prediction of damaged car parts Key Words: Car damage classification, CNN, transfer learning, convolutional auto-encoders 1. INTRODUCTION Currently, AI is advancing at a great pace and deep learning is one of the contributors to that. It is good to understand the basics of deep learning as they are changing the world we live. Deep learningisasub-field of machine learning dealing with algorithms inspired by the structure and function of the brain called artificial neural networks. In other words, It mirrors the functioning of our brains Deep learning algorithms are similar to how nervous system structured where each neuron connected each other and passing information. One of the differences between machine learning and deep learning model is on the feature extraction area. Featureextractionisdonebyhumanin machine learning whereasdeeplearningmodelfigures out by itself Today, in the car insurance industry, a lot of money is wasted due to claims leakage. Money lost through claims management inefficiencies that ultimately result from failures in existing processes (manual and automated). In other words, it's the difference between what you did spend and what you should have spent on a claim. The cause can be procedural,suchasfrominefficientclaimprocessingor improper/errant payments,orfromhumanerror,such as poor decision-making, customer service, or even fraud. Claim Leakage is often discovered through an audit of closed claim files. CNN is used as the default model for anything to deal with images. Hence in this project, we employ Convolutional Neural Network (CNN) based methods for classification of car damage types. Specifically, we consider common damagetypes such as bumper dent, door dent, glass shatter, headlamp broken, taillampbroken,scratchandsmash. Nowadays there are papers that have mentioned the use of Recurrent Neural Network (RNN) for the image recognition. TraditionallyRNNs are being usedfortext and speech recognition. According to study after experimenting with many techniques such as directly training a CNN, pre-training a CNN using autoencoder followed by fine-tuning, using transfer learning from large CNN's trained on ImageNet and building an ensemble classifier on top of the set of pre-trained classifiers. Weobservethattransferlearningcombined with ensemble learning works the best. Figure 1: Basic architecture of CNN 2. LITERATURE SURVEY [1] Srimal Jayawardena et al., “Image based automatic vehicle damage detection", Ph.D. thesis, Australian National University, 2013.
  • 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 2068 [2] F Samadzadegan and H Rastiveisi, “Automatic detection and classification of damaged buildings, using high resolution satellite imagery and vector data,” The International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences, vol. 37, pp. 415– 420,2008. [3] K Kouchi and F Yamazaki, “Damagedetectionbased on object-based segmentation and classification from high resolution satellite images for the 2003 boumerdes, algeria earthquake,” in Proceedings of the 26th Asian conference on Remote Sensing, Hanoi, Vietnam, 2005. [4] Ellen Rathje and Melba Crawford, “Using high resolution satellite imagery to detect damage from the 2003 northern algeria earthquake,” in 13th World Conference on Earthquake Engineering, August, 2004, pp. 1–6. [5] Michael Giering Mark R. Gurvich Soumalya Sarkar, Kishore K. Reddy, “Deep learning for structural health monitoring: A damage characterizationapplication,”in Annual Conference of the Prognostics and Health Management Society, 2016. [6] Dumitru Erhan, Yoshua Bengio, Aaron Courville, Pierre-Antoine Manzagol, Pascal Vincent, and Samy Bengio, “Why does unsupervised pre-training help deep learning?” Journal of Machine LearningResearch, vol. 11, no. Feb, pp. 625–660, 2010. 3. Proposed Work The overall Damage Assessment for Car Insurance (DACI) can be divided in four parts:  Collecting Datasets  Training and Testing Of Datasets  Backend ● Collecting Datasets We have collected ten commonly observed types of damages such as Bumper, door, door glass, grille, headlamp, hood, mirror, roof, taillamp,andwindshield in addition we also collected some images which does not belong to damage class, some images were collected from web and somewhere manually annotated. ● Training and Testing of Datasets 3000 plus images were taken for training and 200-300 for testing. we synthetically enlarged the dataset approx. five times by appending it with random rotations (between -20 to 20 degrees) and horizontal fliptransformations.Fortheclassificationexperiments, the dataset was randomly split into 80%-20% where 80% was used for training and 20% was used for testing. ● Backend We createdseparatepythonprogramsforeachofthose commonly observed car parts forrecognizinginimage whether that car part is damaged or not, and will tell if it is not present in image.  Generating a CNN model The created python programs for each of car parts were used to train the CNN model for recognizing in image whether that car partisdamagedornot,andwill tell if it is not present in image. The model consist of ten layers Conv1-Pool1-Conv2-Pool2-Conv3-Pool3- Conv4Pool4-FC-Softmax where Conv, Pool, FC and SoftMax denotes convolution layer, pooling layer, fully connected layer and a SoftMax layer respectively.Each convolutional layer has 16 filters of size 5 × 5. A RELU non-linearity is used for every convolutionallayer.The total number of weights in the network are approx. 423K Figure 2: CNN Layers Car image will be passed through all these 10 models one by one, and each model will give its respective output in following three classes -Damaged part - Undamaged part -Missing part 4. RESULTS User will upload a car image or images and number plate of car, and we extract car registration number in text form using Googles Tesseract OCR.
  • 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 2069 Figure 3: Registration/login page After Login output of prediction in three classes - Damaged part, Undamaged part, Missing part Figure 4: Classification of car parts User will select the correct number among 3 outputs which our system generated. Figure 5: Number plate selection And then This registration number will be passed to RTO, and following fields will be fetched from RTO — Figure 6: Output from RTO We are calculating cost for the parts which are damaged. As each make and model of the car have different costs, we canuseRTOsfetchedinformationto specify make andmodel of the car,andfetchrespective models’ costs from database. Figure 7: Cost of Damaged parts And then report of estimation in pdf format will be generated
  • 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 2070 Figure 8: Downloading option for reports Figure 9: Report of damaged car 5. CONCLUSION This paper has generally discussed the design and implementation of damage assessment for car insurance (DACI) by developing deep learning car damage classification model on website development platform where user will upload image or images of damaged car with help of phone’s camera. then according to damage calculation, the total cost of car will be displayed in a report format. This system is tested over a wide range of images yielding high accuracy rate 6. REFERENCES [1] Srimal Jayawardena et al., “Image based automatic vehicle damage detection", Ph.D. thesis, Australian National University, 2013. [2] F Samadzadegan and H Rastiveisi, “Automatic detection and classification of damaged buildings, using high resolution satellite imagery and vector data,” The International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences, vol. 37, pp. 415– 420,2008. [3] K Kouchi and F Yamazaki, “Damagedetectionbased on object-based segmentation and classification from high resolution satellite images for the 2003 boumerdes, algeria earthquake,” in Proceedings of the 26th Asian conference on Remote Sensing, Hanoi, Vietnam, 2005. [4] Ellen Rathje and Melba Crawford, “Using high resolution satellite imagery to detect damage from the 2003 northern algeria earthquake,” in 13th World Conference on Earthquake Engineering, August, 2004, pp. 1–6. [5] Michael Giering Mark R. Gurvich Soumalya Sarkar, Kishore K. Reddy, “Deep learning for structural health monitoring: A damage characterizationapplication,”in Annual Conference of the Prognostics and Health Management Society, 2016. [6] Dumitru Erhan, Yoshua Bengio, Aaron Courville, Pierre-Antoine Manzagol, Pascal Vincent, and Samy Bengio, “Why does unsupervised pre-training help deep learning?” Journal of Machine LearningResearch, vol. 11, no. Feb, pp. 625–660, 2010.