SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 565
Road Feature Extraction From High Resolution Satellite Images Using
Neural Network
Akshata pingale1, Ashwini Kanskar2, Sukanya Dodke3, Prof. Sonali Sawant4
Electronics and Telecommunication Department, Pimpri Chinchwad College of Engineering, Pune, Maharashtra,
India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Road transportation is the main form of
transportation in any given region. The main problem in
developing countries is the maintenance of the road. The
maintenance includes the potholes on the road which is the
major cause of the road accidents. Whereastheroaddamages
that occur due to the natural disasters or the ill maintenance
of the roads, will eventually lead to the delay and also results
in the horrible travel experience, which may not be suitable in
certain situations. This paper deals with the detection and
notification of potholes on roads using raspberry pi as the
controller. In this project we propose a method to detect the
damages on the road surface using the image of roads in
different regions. As precautionary measure, a warning
message will be displayed so that the traveller can choose an
alternate route. And the presence of the pothole is notified to
the government office automatically through cloud network.
This project is designed to reduce the road accidents.
Key Words: Road surface damage, Potholes, warning
message, openCV, Android, CNN
1. INTRODUCTION
India is the most populated country in the world,
does not have proper maintenance of the road, over
95%of the people uses road transportation.Duetothis
peak usage of road transports, there are many
possibilities of potholes on roads, which become the
reason for several life drinking accidents.
Chart-1: Road accidents
Road transport is the most common and
complex network as it covers a wide range, physically
convenient, highly flexible and usually the most
operationally suitable and readily available means of
movement of goods and passenger traffic over short,
medium and long distances. The potholes occur due to
heavy rain or due to the heavy vehicles on the road.
These potholes become the main reason for the road
accidents.
In road pothole is a kind of structural damage.
Pothole detection plays an important role in highway
administration and the maintenance department.
Traditionally, pothole detection mainly relies on
manual work, which is labor-consuming, time
consuming, imprecise and dangerous. Some systems
use automatic algorithms for pothole detection,
however high success intermsofclassificationratehas
not been achieved due tolightingconditions,variousin
road texture and other difficult environmental
conditions.
Therefore, it is necessaryto propose a kind offastand
effective method to improvetheefficiencyofdetection.
There have been many thoughtful studies on pothole
auto recognition. In image pre-processing stage, many
researchers have paid great attention. For example,
histogram equalization and spatial filtering have been
used to achieve the image enhancement. For image
segmentation, a suitable threshold is needed, in a
solution is proposed which is to break the image into
tiles.
The block size is a very important parameter. It
should be large enough to contain both the crack and
background regions while representing only the local
information. After binary image processing, as noise
and texture existed, there will be some isolated dots,
burrs and small connected domains. Mathematical
morphology is introduced into the applicationsofroad
image analysis and processing.Buttheresultofthemis
not very well due to different lighting conditions and
surface texture. Usually, even mathematical
morphology method could not solve the problem that
there are many breakpoints in the potholes. However,
the algorithm is complex and time-consuming. In this
project a novel method is introducedwhichcarriedout
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 566
in two stages. First stage, the pre-processing stage is
image segmentation and noise removing. The second
stage is to detect the breakpoints of the potholes.
2. METHODOLOGY
Fig- 1. Block Diagram of road damage detection
The above specified methodology first starts from
the acquisition of the image.Theimagecanbeacquired
by many means of platforms. The resolution of the
image the height of the acquisition device from the
road plays an important role in the image processing.
Whereas, the resolution gives the clarity of the image,
the height determines the length of the road covered.
For shorter road lengths the images can be captured
from low heights, for the longer lengths of the roads,
the images of the roads should be taken from the high
altitudes. Satellite images depend on length, height,
altitude, area coverage, etc.
Once the image is acquired, it is subjected to the
pre-processing. This pre-processing involves various
aspects such as the removal of the unwanted regions
within the images, such as the surrounding vegetation,
or the environment. This step is done to minimize the
executing time of these regions during the processing,
which may delay the processing and correspondingly
contribute to the lengthened executing time. As
acquired color image consist of 3 planes (Red, Green,
and Blue); it is difficult to process it in quick time. So, it
is first converted into Grayscale image. After color to
grayscale conversion, pre-processing stage uses some
enhancement techniques to eliminate challenges
created by noise, blurring effect and uneven lighting.
Where the pixel range is reduced, the hue and the
saturation region are removed and the luminance of
the image is retained by converting the image from the
true color image to the grayscale.
2.1 CNN FOR FEATURE EXTRACTION:
Convolution is the first layer to extractfeaturesfrom
an input image. Convolutionpreservestherelationship
between pixels by learning image features using small
squares of input data. It is a mathematical operation
that takes two inputs such as image matrix and a filter
or kernel.
Fig-2. Image matrixmultiplies kernelorfiltermatrix
Consider a 5 x 5 whose image pixel values are 0, 1
and filter matrix 3 x 3 as shown in below
Fig-3. Image matrix multiplieskernelorfiltermatrix
Then the convolution of 5 x 5 image matrix
multiplies with 3 x 3 filter matrix which is called
“Feature Map” as output shown in below
Fig-4. 3 x 3 Output matrix
Convolution of an image with different filters can
perform operations such as edge detection, blur and
sharpen by applying filters. The below example shows
various convolution image after applying different
types of filters (Kernels).
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 567
Fig-5. Some common filters
2.1.1 STRIDES:
Stride is the number of pixels shifts over the input
matrix. When the stride is 1 then we move the filtersto
1 pixel at a time. When the stride is 2 then we move the
filters to 2 pixels at a time and so on. The below figure
shows convolution would work with a stride of 2.
Fig-6. Stride of 2 pixels
2.1.2 PADDING:
Sometimes filter does not fit perfectly fit the input
image. We have two options:
• Pad the picture with zeros (zero-padding) so
that it fits
• Drop the part of the image where the filter did
not fit. This is called valid padding which keeps only
valid part of the image.
2.1.3 NON LINEARITY (RELU):
ReLU standsforRectifiedLinearUnitforanon-linear
operation. The output is ƒ(x) = max (0, x).
Why ReLU is important: ReLU’s purpose is to
introduce non-linearity in our ConvNet. Since, the real
world data would want our ConvNet to learn would be
non-negative linear values.
Fig-7. ReLU operation
There are other non linear functions such as tanh or
sigmoid can also be used instead of ReLU. Most of the
data scientistsusesReLUsinceperformancewiseReLU
is better than other two.
2.1.4 POOLING LAYER:
Pooling layers section would reduce the number of
parameters when the images are too large. Spatial
pooling also called subsampling or downsampling
which reduces the dimensionality of each map but
retains the important information. Spatial pooling can
be of different types:
• Max Pooling
• Average Pooling
• Sum Pooling
Max pooling take the largest element from the
rectified feature map. Taking the largestelementcould
also take the average pooling. Sum of all elements in
the feature map call as sum pooling.
Fig-8. Max Pooling
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 568
2.1.5 FULLY CONNECTED LAYER:
The layer we call as FC layer, we flattenedourmatrix
into vector and feed it into a fully connected layer like
neural network.
Fig-9.After pooling layer, flattened as FC layer
In the above diagram, feature map matrix will be
converted as vector (x1, x2, x3, …). With the fully
connected layers,wecombinedthesefeaturestogether
to create a model. Finally, we have an activation
function such as softmax or sigmoid to classify the
outputs as cat, dog, car, truck etc.,
Fig-10. Complete CNN architecture
SUMMARY:
• Provide input image into convolution layer
• Choose parameters, apply filters with strides,
padding if requires. Perform convolution on the image
and apply ReLU activation to the matrix.
• Perform pooling to reduce dimensionality size
• Addasmanyconvolutionallayersuntilsatisfied
• Flatten the output and feed into a fully
connected layer (FC Layer)
• Output the class using an activation function
(Logistic Regression with cost functions)andclassifies
images.
2.2 STEPWISEPROJECTWORKING/ALGORITHM:
1. Start raspberry pi
2. Download dataset
3. Sort dataset as pothole images andnopotholes
images
4. Train dataset using CNN to get model
5. Save model
6. Get input image
7. Passinputimagetomodel.predict()functionto
get prediction class
8. Show results
9. End
3. RESULTS
Above algorithm is executed and damage was
detected in the image. The results shown below:
Fig-11. User Interface
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 569
Fig-12. Image Processing
After extracting the feature condition of road is
detected as below:
Fig-13. Road condition
Presence of the potholeisnotifiedtothegovernment
office automatically through cloud network.
Fig-14. Android app for result
4. CONCLUSIONS
This Project will serve as a useful approach to
automate pothole detection and reporting. It will
enable to create and maintain updated database of
detected potholes. It serves as a helpful approach for
the government authority. It reduces the time takento
manually search and locate potholes. It reduces the
manpower required. It provides accurate information
about the location.
The system can be made useful as a part of smart
city campaign. Also by applying machine learning
techniques in classifying data can help the system to
adapt changing factors like nature of the road and
vehicle type the users use. And the data collected can
be sent to the government so that they can take the
care for improving the road condition.
5. REFERENCES
1. Gunjan Chugh, Divya Bansal and Sanjeev
Sofa,"Road Condition Detection UsingSmartphone
Sensors: A Survey",Department of Computer
Science and Engineering PEC University of
Technology, Chandigarh, India ISSN 0974-2174,
Volume 7, Number 6 (2014)
2. Syuan-Yi Chen1, Annie Shih2 and Chun-Yi
Hsiao,"Road condition Detection Device Using
Arduino Sensing Module and Android Smartphone
",2015 International Conference on Consumer
Electronics-Taiwan (ICCE-TW)
3. Yanping Wang, Yanking Wang, Yong Da, Xiaoyan
Liu, Jiebo Li, Jingyi Huang. (2011). “An Object-
oriented Method for Road Damage
4. Detection from High Resolution Remote Sensing
Images”. IEEE International Conference on
Geoinformatics,
5. Lixia Gong, Liqiang An, Mingzhong Liu, Jingfa
Zhang. (2012).
6. “Road damage detection from high-resolution RS
image”. IEEE International Conference on
geoscience and Remote Sensing.

More Related Content

What's hot

Online video-based abnormal detection using highly motion techniques and stat...
Online video-based abnormal detection using highly motion techniques and stat...Online video-based abnormal detection using highly motion techniques and stat...
Online video-based abnormal detection using highly motion techniques and stat...TELKOMNIKA JOURNAL
 
1. control of real time traffic with the help of image processing
1. control of real time traffic with the help of image processing1. control of real time traffic with the help of image processing
1. control of real time traffic with the help of image processingNitish Kotak
 
IRJET- Multiple Band Microstrip Patch Antenna with DGS for X Band, Ku Band an...
IRJET- Multiple Band Microstrip Patch Antenna with DGS for X Band, Ku Band an...IRJET- Multiple Band Microstrip Patch Antenna with DGS for X Band, Ku Band an...
IRJET- Multiple Band Microstrip Patch Antenna with DGS for X Band, Ku Band an...IRJET Journal
 
Effect of sub classes on the accuracy of the classified image
Effect of sub classes on the accuracy of the classified imageEffect of sub classes on the accuracy of the classified image
Effect of sub classes on the accuracy of the classified imageiaemedu
 
IRJET - Dual Band Low Profile MPA with I-shaped MTM Unit Cell for Satelli...
IRJET -  	  Dual Band Low Profile MPA with I-shaped MTM Unit Cell for Satelli...IRJET -  	  Dual Band Low Profile MPA with I-shaped MTM Unit Cell for Satelli...
IRJET - Dual Band Low Profile MPA with I-shaped MTM Unit Cell for Satelli...IRJET Journal
 
Outsourcing the Design & Manufacturing of Projection Engines for 3D Metrology...
Outsourcing the Design & Manufacturing of Projection Engines for 3D Metrology...Outsourcing the Design & Manufacturing of Projection Engines for 3D Metrology...
Outsourcing the Design & Manufacturing of Projection Engines for 3D Metrology...Giplink Digital
 
IRJET- Image Segmentation using Classification of Radial Basis Function of Ne...
IRJET- Image Segmentation using Classification of Radial Basis Function of Ne...IRJET- Image Segmentation using Classification of Radial Basis Function of Ne...
IRJET- Image Segmentation using Classification of Radial Basis Function of Ne...IRJET Journal
 
IRJET- White Balance and Multi Scale Fusion for under Water Image Enhancement
IRJET- White Balance and Multi Scale Fusion for under Water Image EnhancementIRJET- White Balance and Multi Scale Fusion for under Water Image Enhancement
IRJET- White Balance and Multi Scale Fusion for under Water Image EnhancementIRJET Journal
 
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
 
74 real time-image-processing-applied-to-traffic-queue-d
74 real time-image-processing-applied-to-traffic-queue-d74 real time-image-processing-applied-to-traffic-queue-d
74 real time-image-processing-applied-to-traffic-queue-dravi247272
 
IRJET - Automated 3-D Segmentation of Lung with Lung Cancer in CT Data using ...
IRJET - Automated 3-D Segmentation of Lung with Lung Cancer in CT Data using ...IRJET - Automated 3-D Segmentation of Lung with Lung Cancer in CT Data using ...
IRJET - Automated 3-D Segmentation of Lung with Lung Cancer in CT Data using ...IRJET Journal
 
data acquisition methods in reverse engineering
data acquisition methods in reverse engineeringdata acquisition methods in reverse engineering
data acquisition methods in reverse engineeringRanjith Mech
 
IRJET-Analysis of Face Recognition System for Different Classifier
IRJET-Analysis of Face Recognition System for Different ClassifierIRJET-Analysis of Face Recognition System for Different Classifier
IRJET-Analysis of Face Recognition System for Different ClassifierIRJET Journal
 
Survey Paper for Different Video Stabilization Techniques
Survey Paper for Different Video Stabilization TechniquesSurvey Paper for Different Video Stabilization Techniques
Survey Paper for Different Video Stabilization TechniquesIRJET Journal
 
Review on Optimal image fusion techniques and Hybrid technique
Review on Optimal image fusion techniques and Hybrid techniqueReview on Optimal image fusion techniques and Hybrid technique
Review on Optimal image fusion techniques and Hybrid techniqueIRJET Journal
 
IRJET- Interactive Image Segmentation with Seed Propagation
IRJET-  	  Interactive Image Segmentation with Seed PropagationIRJET-  	  Interactive Image Segmentation with Seed Propagation
IRJET- Interactive Image Segmentation with Seed PropagationIRJET Journal
 
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET Journal
 
IRJET - An Intelligent Pothole Detection System using Deep Learning
IRJET -  	  An Intelligent Pothole Detection System using Deep LearningIRJET -  	  An Intelligent Pothole Detection System using Deep Learning
IRJET - An Intelligent Pothole Detection System using Deep LearningIRJET Journal
 
CRACK DETECTION AND CLASSIFICATION IN CONCRETE STRUCTURE
CRACK DETECTION AND CLASSIFICATION IN CONCRETE STRUCTURECRACK DETECTION AND CLASSIFICATION IN CONCRETE STRUCTURE
CRACK DETECTION AND CLASSIFICATION IN CONCRETE STRUCTUREJournal For Research
 

What's hot (20)

Online video-based abnormal detection using highly motion techniques and stat...
Online video-based abnormal detection using highly motion techniques and stat...Online video-based abnormal detection using highly motion techniques and stat...
Online video-based abnormal detection using highly motion techniques and stat...
 
1. control of real time traffic with the help of image processing
1. control of real time traffic with the help of image processing1. control of real time traffic with the help of image processing
1. control of real time traffic with the help of image processing
 
IRJET- Multiple Band Microstrip Patch Antenna with DGS for X Band, Ku Band an...
IRJET- Multiple Band Microstrip Patch Antenna with DGS for X Band, Ku Band an...IRJET- Multiple Band Microstrip Patch Antenna with DGS for X Band, Ku Band an...
IRJET- Multiple Band Microstrip Patch Antenna with DGS for X Band, Ku Band an...
 
Effect of sub classes on the accuracy of the classified image
Effect of sub classes on the accuracy of the classified imageEffect of sub classes on the accuracy of the classified image
Effect of sub classes on the accuracy of the classified image
 
Ijciet 10 02_043
Ijciet 10 02_043Ijciet 10 02_043
Ijciet 10 02_043
 
IRJET - Dual Band Low Profile MPA with I-shaped MTM Unit Cell for Satelli...
IRJET -  	  Dual Band Low Profile MPA with I-shaped MTM Unit Cell for Satelli...IRJET -  	  Dual Band Low Profile MPA with I-shaped MTM Unit Cell for Satelli...
IRJET - Dual Band Low Profile MPA with I-shaped MTM Unit Cell for Satelli...
 
Outsourcing the Design & Manufacturing of Projection Engines for 3D Metrology...
Outsourcing the Design & Manufacturing of Projection Engines for 3D Metrology...Outsourcing the Design & Manufacturing of Projection Engines for 3D Metrology...
Outsourcing the Design & Manufacturing of Projection Engines for 3D Metrology...
 
IRJET- Image Segmentation using Classification of Radial Basis Function of Ne...
IRJET- Image Segmentation using Classification of Radial Basis Function of Ne...IRJET- Image Segmentation using Classification of Radial Basis Function of Ne...
IRJET- Image Segmentation using Classification of Radial Basis Function of Ne...
 
IRJET- White Balance and Multi Scale Fusion for under Water Image Enhancement
IRJET- White Balance and Multi Scale Fusion for under Water Image EnhancementIRJET- White Balance and Multi Scale Fusion for under Water Image Enhancement
IRJET- White Balance and Multi Scale Fusion for under Water Image Enhancement
 
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
 
74 real time-image-processing-applied-to-traffic-queue-d
74 real time-image-processing-applied-to-traffic-queue-d74 real time-image-processing-applied-to-traffic-queue-d
74 real time-image-processing-applied-to-traffic-queue-d
 
IRJET - Automated 3-D Segmentation of Lung with Lung Cancer in CT Data using ...
IRJET - Automated 3-D Segmentation of Lung with Lung Cancer in CT Data using ...IRJET - Automated 3-D Segmentation of Lung with Lung Cancer in CT Data using ...
IRJET - Automated 3-D Segmentation of Lung with Lung Cancer in CT Data using ...
 
data acquisition methods in reverse engineering
data acquisition methods in reverse engineeringdata acquisition methods in reverse engineering
data acquisition methods in reverse engineering
 
IRJET-Analysis of Face Recognition System for Different Classifier
IRJET-Analysis of Face Recognition System for Different ClassifierIRJET-Analysis of Face Recognition System for Different Classifier
IRJET-Analysis of Face Recognition System for Different Classifier
 
Survey Paper for Different Video Stabilization Techniques
Survey Paper for Different Video Stabilization TechniquesSurvey Paper for Different Video Stabilization Techniques
Survey Paper for Different Video Stabilization Techniques
 
Review on Optimal image fusion techniques and Hybrid technique
Review on Optimal image fusion techniques and Hybrid techniqueReview on Optimal image fusion techniques and Hybrid technique
Review on Optimal image fusion techniques and Hybrid technique
 
IRJET- Interactive Image Segmentation with Seed Propagation
IRJET-  	  Interactive Image Segmentation with Seed PropagationIRJET-  	  Interactive Image Segmentation with Seed Propagation
IRJET- Interactive Image Segmentation with Seed Propagation
 
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
 
IRJET - An Intelligent Pothole Detection System using Deep Learning
IRJET -  	  An Intelligent Pothole Detection System using Deep LearningIRJET -  	  An Intelligent Pothole Detection System using Deep Learning
IRJET - An Intelligent Pothole Detection System using Deep Learning
 
CRACK DETECTION AND CLASSIFICATION IN CONCRETE STRUCTURE
CRACK DETECTION AND CLASSIFICATION IN CONCRETE STRUCTURECRACK DETECTION AND CLASSIFICATION IN CONCRETE STRUCTURE
CRACK DETECTION AND CLASSIFICATION IN CONCRETE STRUCTURE
 

Similar to IRJET- Road Feature Extraction from High Resolution Satellite Images using Neural Network

Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...
Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...
Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...IRJET Journal
 
IRJET- A Survey of Approaches for Vehicle Traffic Analysis
IRJET- A Survey of Approaches for Vehicle Traffic AnalysisIRJET- A Survey of Approaches for Vehicle Traffic Analysis
IRJET- A Survey of Approaches for Vehicle Traffic AnalysisIRJET Journal
 
IRJET- A Survey of Approaches for Vehicle Traffic Analysis
IRJET- A Survey of Approaches for Vehicle Traffic AnalysisIRJET- A Survey of Approaches for Vehicle Traffic Analysis
IRJET- A Survey of Approaches for Vehicle Traffic AnalysisIRJET Journal
 
CNN MODEL FOR TRAFFIC SIGN RECOGNITION
CNN MODEL FOR TRAFFIC SIGN RECOGNITIONCNN MODEL FOR TRAFFIC SIGN RECOGNITION
CNN MODEL FOR TRAFFIC SIGN RECOGNITIONIRJET Journal
 
Implementation of Lane Line Detection using HoughTransformation and Gaussian ...
Implementation of Lane Line Detection using HoughTransformation and Gaussian ...Implementation of Lane Line Detection using HoughTransformation and Gaussian ...
Implementation of Lane Line Detection using HoughTransformation and Gaussian ...IRJET Journal
 
IRJET- Geological Boundary Detection for Satellite Images using AI Technique
IRJET- Geological Boundary Detection for Satellite Images using AI TechniqueIRJET- Geological Boundary Detection for Satellite Images using AI Technique
IRJET- Geological Boundary Detection for Satellite Images using AI TechniqueIRJET Journal
 
IRJET- Air Quality Monitoring using CNN Classification
IRJET- Air Quality Monitoring using CNN ClassificationIRJET- Air Quality Monitoring using CNN Classification
IRJET- Air Quality Monitoring using CNN ClassificationIRJET 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
 
IRJET- Digit Identification in Natural Images
IRJET- Digit Identification in Natural ImagesIRJET- Digit Identification in Natural Images
IRJET- Digit Identification in Natural ImagesIRJET Journal
 
Traffic Sign Recognition System
Traffic Sign Recognition SystemTraffic Sign Recognition System
Traffic Sign Recognition SystemIRJET Journal
 
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENT
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENTLOW ILLUMINATION VIDEO-IMAGE ENHANCEMENT
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENTIRJET Journal
 
Route Intensity Tracker using Machine Learning and Database Management
Route Intensity Tracker using Machine Learning and Database ManagementRoute Intensity Tracker using Machine Learning and Database Management
Route Intensity Tracker using Machine Learning and Database ManagementIRJET Journal
 
IRJET- A Review on Image Denoising & Dehazing Algorithm to Improve Dark Chann...
IRJET- A Review on Image Denoising & Dehazing Algorithm to Improve Dark Chann...IRJET- A Review on Image Denoising & Dehazing Algorithm to Improve Dark Chann...
IRJET- A Review on Image Denoising & Dehazing Algorithm to Improve Dark Chann...IRJET Journal
 
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...IRJET Journal
 
IRJET-Reversible Image Watermarking Based on Histogram Shifting Technique
IRJET-Reversible Image Watermarking Based on Histogram Shifting TechniqueIRJET-Reversible Image Watermarking Based on Histogram Shifting Technique
IRJET-Reversible Image Watermarking Based on Histogram Shifting TechniqueIRJET Journal
 
Reversible Image Watermarking Based on Histogram Shifting Technique
Reversible Image Watermarking Based on Histogram Shifting TechniqueReversible Image Watermarking Based on Histogram Shifting Technique
Reversible Image Watermarking Based on Histogram Shifting TechniqueIRJET Journal
 
Improved Performance of Fuzzy Logic Algorithm for Lane Detection Images
Improved Performance of Fuzzy Logic Algorithm for Lane Detection ImagesImproved Performance of Fuzzy Logic Algorithm for Lane Detection Images
Improved Performance of Fuzzy Logic Algorithm for Lane Detection ImagesIRJET Journal
 
IRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level ProcessIRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level ProcessIRJET Journal
 
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNN
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNNIRJET- Automatic Detection of Diabetic Retinopathy using R-CNN
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNNIRJET Journal
 
IRJET- Vehicle Detection and Counting System using Morphological Operations
IRJET- Vehicle Detection and Counting System using Morphological OperationsIRJET- Vehicle Detection and Counting System using Morphological Operations
IRJET- Vehicle Detection and Counting System using Morphological OperationsIRJET Journal
 

Similar to IRJET- Road Feature Extraction from High Resolution Satellite Images using Neural Network (20)

Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...
Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...
Lane Detection and Traffic Sign Recognition using OpenCV and Deep Learning fo...
 
IRJET- A Survey of Approaches for Vehicle Traffic Analysis
IRJET- A Survey of Approaches for Vehicle Traffic AnalysisIRJET- A Survey of Approaches for Vehicle Traffic Analysis
IRJET- A Survey of Approaches for Vehicle Traffic Analysis
 
IRJET- A Survey of Approaches for Vehicle Traffic Analysis
IRJET- A Survey of Approaches for Vehicle Traffic AnalysisIRJET- A Survey of Approaches for Vehicle Traffic Analysis
IRJET- A Survey of Approaches for Vehicle Traffic Analysis
 
CNN MODEL FOR TRAFFIC SIGN RECOGNITION
CNN MODEL FOR TRAFFIC SIGN RECOGNITIONCNN MODEL FOR TRAFFIC SIGN RECOGNITION
CNN MODEL FOR TRAFFIC SIGN RECOGNITION
 
Implementation of Lane Line Detection using HoughTransformation and Gaussian ...
Implementation of Lane Line Detection using HoughTransformation and Gaussian ...Implementation of Lane Line Detection using HoughTransformation and Gaussian ...
Implementation of Lane Line Detection using HoughTransformation and Gaussian ...
 
IRJET- Geological Boundary Detection for Satellite Images using AI Technique
IRJET- Geological Boundary Detection for Satellite Images using AI TechniqueIRJET- Geological Boundary Detection for Satellite Images using AI Technique
IRJET- Geological Boundary Detection for Satellite Images using AI Technique
 
IRJET- Air Quality Monitoring using CNN Classification
IRJET- Air Quality Monitoring using CNN ClassificationIRJET- Air Quality Monitoring using CNN Classification
IRJET- Air Quality Monitoring using CNN Classification
 
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
 
IRJET- Digit Identification in Natural Images
IRJET- Digit Identification in Natural ImagesIRJET- Digit Identification in Natural Images
IRJET- Digit Identification in Natural Images
 
Traffic Sign Recognition System
Traffic Sign Recognition SystemTraffic Sign Recognition System
Traffic Sign Recognition System
 
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENT
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENTLOW ILLUMINATION VIDEO-IMAGE ENHANCEMENT
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENT
 
Route Intensity Tracker using Machine Learning and Database Management
Route Intensity Tracker using Machine Learning and Database ManagementRoute Intensity Tracker using Machine Learning and Database Management
Route Intensity Tracker using Machine Learning and Database Management
 
IRJET- A Review on Image Denoising & Dehazing Algorithm to Improve Dark Chann...
IRJET- A Review on Image Denoising & Dehazing Algorithm to Improve Dark Chann...IRJET- A Review on Image Denoising & Dehazing Algorithm to Improve Dark Chann...
IRJET- A Review on Image Denoising & Dehazing Algorithm to Improve Dark Chann...
 
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...
AUTOMATIC SPEED CONTROLLING OF VEHICLE BASED ON SIGNBOARD DETECTION USING IMA...
 
IRJET-Reversible Image Watermarking Based on Histogram Shifting Technique
IRJET-Reversible Image Watermarking Based on Histogram Shifting TechniqueIRJET-Reversible Image Watermarking Based on Histogram Shifting Technique
IRJET-Reversible Image Watermarking Based on Histogram Shifting Technique
 
Reversible Image Watermarking Based on Histogram Shifting Technique
Reversible Image Watermarking Based on Histogram Shifting TechniqueReversible Image Watermarking Based on Histogram Shifting Technique
Reversible Image Watermarking Based on Histogram Shifting Technique
 
Improved Performance of Fuzzy Logic Algorithm for Lane Detection Images
Improved Performance of Fuzzy Logic Algorithm for Lane Detection ImagesImproved Performance of Fuzzy Logic Algorithm for Lane Detection Images
Improved Performance of Fuzzy Logic Algorithm for Lane Detection Images
 
IRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level ProcessIRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level Process
 
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNN
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNNIRJET- Automatic Detection of Diabetic Retinopathy using R-CNN
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNN
 
IRJET- Vehicle Detection and Counting System using Morphological Operations
IRJET- Vehicle Detection and Counting System using Morphological OperationsIRJET- Vehicle Detection and Counting System using Morphological Operations
IRJET- Vehicle Detection and Counting System using Morphological Operations
 

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

(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
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
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
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
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
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
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
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
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
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 

Recently uploaded (20)

(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
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
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)
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
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
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
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
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
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
 
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
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 

IRJET- Road Feature Extraction from High Resolution Satellite Images using Neural Network

  • 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 565 Road Feature Extraction From High Resolution Satellite Images Using Neural Network Akshata pingale1, Ashwini Kanskar2, Sukanya Dodke3, Prof. Sonali Sawant4 Electronics and Telecommunication Department, Pimpri Chinchwad College of Engineering, Pune, Maharashtra, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Road transportation is the main form of transportation in any given region. The main problem in developing countries is the maintenance of the road. The maintenance includes the potholes on the road which is the major cause of the road accidents. Whereastheroaddamages that occur due to the natural disasters or the ill maintenance of the roads, will eventually lead to the delay and also results in the horrible travel experience, which may not be suitable in certain situations. This paper deals with the detection and notification of potholes on roads using raspberry pi as the controller. In this project we propose a method to detect the damages on the road surface using the image of roads in different regions. As precautionary measure, a warning message will be displayed so that the traveller can choose an alternate route. And the presence of the pothole is notified to the government office automatically through cloud network. This project is designed to reduce the road accidents. Key Words: Road surface damage, Potholes, warning message, openCV, Android, CNN 1. INTRODUCTION India is the most populated country in the world, does not have proper maintenance of the road, over 95%of the people uses road transportation.Duetothis peak usage of road transports, there are many possibilities of potholes on roads, which become the reason for several life drinking accidents. Chart-1: Road accidents Road transport is the most common and complex network as it covers a wide range, physically convenient, highly flexible and usually the most operationally suitable and readily available means of movement of goods and passenger traffic over short, medium and long distances. The potholes occur due to heavy rain or due to the heavy vehicles on the road. These potholes become the main reason for the road accidents. In road pothole is a kind of structural damage. Pothole detection plays an important role in highway administration and the maintenance department. Traditionally, pothole detection mainly relies on manual work, which is labor-consuming, time consuming, imprecise and dangerous. Some systems use automatic algorithms for pothole detection, however high success intermsofclassificationratehas not been achieved due tolightingconditions,variousin road texture and other difficult environmental conditions. Therefore, it is necessaryto propose a kind offastand effective method to improvetheefficiencyofdetection. There have been many thoughtful studies on pothole auto recognition. In image pre-processing stage, many researchers have paid great attention. For example, histogram equalization and spatial filtering have been used to achieve the image enhancement. For image segmentation, a suitable threshold is needed, in a solution is proposed which is to break the image into tiles. The block size is a very important parameter. It should be large enough to contain both the crack and background regions while representing only the local information. After binary image processing, as noise and texture existed, there will be some isolated dots, burrs and small connected domains. Mathematical morphology is introduced into the applicationsofroad image analysis and processing.Buttheresultofthemis not very well due to different lighting conditions and surface texture. Usually, even mathematical morphology method could not solve the problem that there are many breakpoints in the potholes. However, the algorithm is complex and time-consuming. In this project a novel method is introducedwhichcarriedout
  • 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 566 in two stages. First stage, the pre-processing stage is image segmentation and noise removing. The second stage is to detect the breakpoints of the potholes. 2. METHODOLOGY Fig- 1. Block Diagram of road damage detection The above specified methodology first starts from the acquisition of the image.Theimagecanbeacquired by many means of platforms. The resolution of the image the height of the acquisition device from the road plays an important role in the image processing. Whereas, the resolution gives the clarity of the image, the height determines the length of the road covered. For shorter road lengths the images can be captured from low heights, for the longer lengths of the roads, the images of the roads should be taken from the high altitudes. Satellite images depend on length, height, altitude, area coverage, etc. Once the image is acquired, it is subjected to the pre-processing. This pre-processing involves various aspects such as the removal of the unwanted regions within the images, such as the surrounding vegetation, or the environment. This step is done to minimize the executing time of these regions during the processing, which may delay the processing and correspondingly contribute to the lengthened executing time. As acquired color image consist of 3 planes (Red, Green, and Blue); it is difficult to process it in quick time. So, it is first converted into Grayscale image. After color to grayscale conversion, pre-processing stage uses some enhancement techniques to eliminate challenges created by noise, blurring effect and uneven lighting. Where the pixel range is reduced, the hue and the saturation region are removed and the luminance of the image is retained by converting the image from the true color image to the grayscale. 2.1 CNN FOR FEATURE EXTRACTION: Convolution is the first layer to extractfeaturesfrom an input image. Convolutionpreservestherelationship between pixels by learning image features using small squares of input data. It is a mathematical operation that takes two inputs such as image matrix and a filter or kernel. Fig-2. Image matrixmultiplies kernelorfiltermatrix Consider a 5 x 5 whose image pixel values are 0, 1 and filter matrix 3 x 3 as shown in below Fig-3. Image matrix multiplieskernelorfiltermatrix Then the convolution of 5 x 5 image matrix multiplies with 3 x 3 filter matrix which is called “Feature Map” as output shown in below Fig-4. 3 x 3 Output matrix Convolution of an image with different filters can perform operations such as edge detection, blur and sharpen by applying filters. The below example shows various convolution image after applying different types of filters (Kernels).
  • 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 567 Fig-5. Some common filters 2.1.1 STRIDES: Stride is the number of pixels shifts over the input matrix. When the stride is 1 then we move the filtersto 1 pixel at a time. When the stride is 2 then we move the filters to 2 pixels at a time and so on. The below figure shows convolution would work with a stride of 2. Fig-6. Stride of 2 pixels 2.1.2 PADDING: Sometimes filter does not fit perfectly fit the input image. We have two options: • Pad the picture with zeros (zero-padding) so that it fits • Drop the part of the image where the filter did not fit. This is called valid padding which keeps only valid part of the image. 2.1.3 NON LINEARITY (RELU): ReLU standsforRectifiedLinearUnitforanon-linear operation. The output is ƒ(x) = max (0, x). Why ReLU is important: ReLU’s purpose is to introduce non-linearity in our ConvNet. Since, the real world data would want our ConvNet to learn would be non-negative linear values. Fig-7. ReLU operation There are other non linear functions such as tanh or sigmoid can also be used instead of ReLU. Most of the data scientistsusesReLUsinceperformancewiseReLU is better than other two. 2.1.4 POOLING LAYER: Pooling layers section would reduce the number of parameters when the images are too large. Spatial pooling also called subsampling or downsampling which reduces the dimensionality of each map but retains the important information. Spatial pooling can be of different types: • Max Pooling • Average Pooling • Sum Pooling Max pooling take the largest element from the rectified feature map. Taking the largestelementcould also take the average pooling. Sum of all elements in the feature map call as sum pooling. Fig-8. Max Pooling
  • 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 568 2.1.5 FULLY CONNECTED LAYER: The layer we call as FC layer, we flattenedourmatrix into vector and feed it into a fully connected layer like neural network. Fig-9.After pooling layer, flattened as FC layer In the above diagram, feature map matrix will be converted as vector (x1, x2, x3, …). With the fully connected layers,wecombinedthesefeaturestogether to create a model. Finally, we have an activation function such as softmax or sigmoid to classify the outputs as cat, dog, car, truck etc., Fig-10. Complete CNN architecture SUMMARY: • Provide input image into convolution layer • Choose parameters, apply filters with strides, padding if requires. Perform convolution on the image and apply ReLU activation to the matrix. • Perform pooling to reduce dimensionality size • Addasmanyconvolutionallayersuntilsatisfied • Flatten the output and feed into a fully connected layer (FC Layer) • Output the class using an activation function (Logistic Regression with cost functions)andclassifies images. 2.2 STEPWISEPROJECTWORKING/ALGORITHM: 1. Start raspberry pi 2. Download dataset 3. Sort dataset as pothole images andnopotholes images 4. Train dataset using CNN to get model 5. Save model 6. Get input image 7. Passinputimagetomodel.predict()functionto get prediction class 8. Show results 9. End 3. RESULTS Above algorithm is executed and damage was detected in the image. The results shown below: Fig-11. User Interface
  • 5. 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 569 Fig-12. Image Processing After extracting the feature condition of road is detected as below: Fig-13. Road condition Presence of the potholeisnotifiedtothegovernment office automatically through cloud network. Fig-14. Android app for result 4. CONCLUSIONS This Project will serve as a useful approach to automate pothole detection and reporting. It will enable to create and maintain updated database of detected potholes. It serves as a helpful approach for the government authority. It reduces the time takento manually search and locate potholes. It reduces the manpower required. It provides accurate information about the location. The system can be made useful as a part of smart city campaign. Also by applying machine learning techniques in classifying data can help the system to adapt changing factors like nature of the road and vehicle type the users use. And the data collected can be sent to the government so that they can take the care for improving the road condition. 5. REFERENCES 1. Gunjan Chugh, Divya Bansal and Sanjeev Sofa,"Road Condition Detection UsingSmartphone Sensors: A Survey",Department of Computer Science and Engineering PEC University of Technology, Chandigarh, India ISSN 0974-2174, Volume 7, Number 6 (2014) 2. Syuan-Yi Chen1, Annie Shih2 and Chun-Yi Hsiao,"Road condition Detection Device Using Arduino Sensing Module and Android Smartphone ",2015 International Conference on Consumer Electronics-Taiwan (ICCE-TW) 3. Yanping Wang, Yanking Wang, Yong Da, Xiaoyan Liu, Jiebo Li, Jingyi Huang. (2011). “An Object- oriented Method for Road Damage 4. Detection from High Resolution Remote Sensing Images”. IEEE International Conference on Geoinformatics, 5. Lixia Gong, Liqiang An, Mingzhong Liu, Jingfa Zhang. (2012). 6. “Road damage detection from high-resolution RS image”. IEEE International Conference on geoscience and Remote Sensing.