SlideShare a Scribd company logo
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
On road defects detection and classification
Thu Huong Nguyen, Aleksei Zhukov, The Long Nguyen
Irkutsk State Technical University
The 7th to 9th April 2016
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 1 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Outline
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 2 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Introduction
• In this talk proposes an automatic defect pavement detection
and classification system capable of identifying and retrieving
pavement surface images containing block cracks, longitudinal
cracks, potholes from a road pavement survey image database.
• The experimental results, achieved using images from Irkutst
roads, are encouraging for the development of automatic
pavement defects detection systems.
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 3 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Motivation
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 4 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Objective
• We proposes algorithms: Graph cuts method for images
segmentation, Random forest for classification and image
processing algorithms for features extraction.
• Automatic learning methods are used, capable of learning the
image statistical features from texture variations of the road
background and of the defects areas.
• The features studied are Histogram, Histogram chain code,
Moments-hull, shape of features.
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 5 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Main steps
1.To detect defect position (ROI).
2.Defect is described by its features.
3.To classify defect each using these different defect features such
as Chain Code Histogram, Hu-Moments, size of defect
region(width and length, area) and histogram of image.
Our approach
The following algorithms have been used: Graph cuts method for
image segmentation, Random Forests algorithm for data
classification.
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 6 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Data Collection
We used two datasets:
1 Our own dataset include:
• 500 images are collected by camera (Canon D100 16 mega
pixel).
• Images are captured in conventional daylight condition.
• Distance from camera to surface of road is 1m-1.2m.
2 SARA
• More 700 images.
• Collection by Center for Telecommunications and Multimedia,
INESC TEC, Portugal.
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 7 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Segmentation by Graph cuts method
• Graph cuts uses power optimization algorithm, which is
applied specifically to those models which employ a
max-flow/min-cut optimization (other graph cutting
algorithms may be considered as graph partitioning
algorithms).
• Finds strong local minima of our np-complete energy function.
• Graph-cuts have been around in computer vision for quite
some time (e.g. [Roy,ICCV98]).
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 8 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Segmentation by Graph cuts method
Figure: Example Graph cuts segmentation method
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 9 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Max-Flow Problem
Task : Maximize the flow from the sink to the source such that:
• The flow it conserved for each node
• The flow for each pipe does not exceed the capacity
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 10 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Ford Fulkerson algorithm (1956)
Input: Given a network G = (V , E) with flow capacity c, a source
node s, and a sink node t
Output: Compute a flow f from s to t of maximum value.
f (u, v) ← 0 for all edges (u, v)
while there exists a path p from s to t in the residual network Gj
do
Find cf (p) = min {cf (u, v) | (u, v) ∈ p} for each
edges(u, v) ∈ p do
f [u, v] = f [u, v] + cf (p);
f [v, u] = f [v, u] − cf (p);
end
end
Algorithm 1: Ford Fulkerson algorithm (1956)
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 11 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Result of max flow
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 12 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Min-Cut Problem
Task : Minimize the cost of the cut
• Each node is either assigned to the source S or sink T
• The cost of the edge (i, j) is taken if (i ∈ S) and (j ∈ T)
Finding min-cut |C| = e∈C we
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 13 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Result of Graph cut segmentation
Figure: Fig(a) Result of Graph cut segmentation method. Fig(b) Result
of Random forest algorithm
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 14 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Flowchart
End
Load model classification of
machine learning
Load road pavement image
database
Classification based on
RandomForest algorithm
Return type of defect road
pavement
Create features vector
Features extraction
Preprocessing image
Begin
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 15 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Random Forest algorithm
• Random forest (or random forests) is an ensemble classifier
that consists of many decision trees and outputs the class that
is the mode of the class’s output by individual trees.
• The method combines Breiman’s ”bagging” idea and the
random selection of features.
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 16 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Flowchart
Figure: Flow chart of Random Forest algorithm [Girish (2015)].
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 17 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Random Forest practical consideration
• Splits are chosen according to a purity measure:
E.g. squared error (regression), Gini index or devinace
(classification)
• How to select N?
Build trees until the error no longer decreases
• How to select M?
Try to recommend defaults, half of them and twice of them
and pick the best.
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 18 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Training time, Correct rate and Error test of Random
Forest classification algorithm
Random Forest 100 trees 50 trees 100 trees 100 trees
depth:2 depth:2 depth:5 depth:10
Training time(sec) 250 150 50 140
Correct rate (%) 91.45 80.5 93.29 96.66
MSE 0.393 0.516 0.366 0.3
Table: Training time, Correct rate and Error test of Random Forest
classification algorithm
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 19 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
Conclusion
• In this talk we suggested the novel approach for road
pavements defects automatic detection and classification.
This method is based on the construction of an irregular
lattice derived from the original image. The lattice is
composed only by straight line segments.
• We also propose to use to Graph cut method, which improve
quality of image segmentation. From this we can detection
part of pavement defect - non defect.
• The classification algorithm - Random Forest was able to
correctly classify all the images contained in the two first sets.
In the test set simulating the real environment the achieved
classification results were 95,5%.
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 20 / 21
Introduction
Data Collection
Construction of Map of Defects
Defects Detection and Classification Method on Road Pavement
Conclusion
Irkutsk State Technical University
THANK YOU SO MUCH !!!
Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 21 / 21

More Related Content

What's hot

Ax4201341346
Ax4201341346Ax4201341346
Ax4201341346
IJERA Editor
 
Summer School: Achievements and Applications of Contemporary Informatics, Mat...
Summer School: Achievements and Applications of Contemporary Informatics, Mat...Summer School: Achievements and Applications of Contemporary Informatics, Mat...
Summer School: Achievements and Applications of Contemporary Informatics, Mat...
YSF-2015
 
Real-Time Video Processing using Contour Numbers and Angles for Non-urban Roa...
Real-Time Video Processing using Contour Numbers and Angles for Non-urban Roa...Real-Time Video Processing using Contour Numbers and Angles for Non-urban Roa...
Real-Time Video Processing using Contour Numbers and Angles for Non-urban Roa...
IJECEIAES
 
Engineering surveying, 5...ition w. schofield
Engineering surveying, 5...ition   w. schofieldEngineering surveying, 5...ition   w. schofield
Engineering surveying, 5...ition w. schofield
rnkhan
 
Exploratory analysis of OpenStreetMap for land use classification
Exploratory analysis of OpenStreetMap for land use classificationExploratory analysis of OpenStreetMap for land use classification
Exploratory analysis of OpenStreetMap for land use classification
Jacinto Estima
 
Paper 3189
Paper 3189Paper 3189
Paper 3189euroFOT
 
Automatic Road Extraction from Airborne LiDAR : A Review
Automatic Road Extraction from Airborne LiDAR : A ReviewAutomatic Road Extraction from Airborne LiDAR : A Review
Automatic Road Extraction from Airborne LiDAR : A Review
IJERA Editor
 

What's hot (7)

Ax4201341346
Ax4201341346Ax4201341346
Ax4201341346
 
Summer School: Achievements and Applications of Contemporary Informatics, Mat...
Summer School: Achievements and Applications of Contemporary Informatics, Mat...Summer School: Achievements and Applications of Contemporary Informatics, Mat...
Summer School: Achievements and Applications of Contemporary Informatics, Mat...
 
Real-Time Video Processing using Contour Numbers and Angles for Non-urban Roa...
Real-Time Video Processing using Contour Numbers and Angles for Non-urban Roa...Real-Time Video Processing using Contour Numbers and Angles for Non-urban Roa...
Real-Time Video Processing using Contour Numbers and Angles for Non-urban Roa...
 
Engineering surveying, 5...ition w. schofield
Engineering surveying, 5...ition   w. schofieldEngineering surveying, 5...ition   w. schofield
Engineering surveying, 5...ition w. schofield
 
Exploratory analysis of OpenStreetMap for land use classification
Exploratory analysis of OpenStreetMap for land use classificationExploratory analysis of OpenStreetMap for land use classification
Exploratory analysis of OpenStreetMap for land use classification
 
Paper 3189
Paper 3189Paper 3189
Paper 3189
 
Automatic Road Extraction from Airborne LiDAR : A Review
Automatic Road Extraction from Airborne LiDAR : A ReviewAutomatic Road Extraction from Airborne LiDAR : A Review
Automatic Road Extraction from Airborne LiDAR : A Review
 

Similar to Thu Huong Nguyen - On Road Defects Detection and Classification

A computer vision-based lane detection technique using gradient threshold and...
A computer vision-based lane detection technique using gradient threshold and...A computer vision-based lane detection technique using gradient threshold and...
A computer vision-based lane detection technique using gradient threshold and...
IJECEIAES
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
ijceronline
 
Reduced Dimension Lane Detection Method
Reduced Dimension Lane Detection MethodReduced Dimension Lane Detection Method
Reduced Dimension Lane Detection Method
ijtsrd
 
Recognition of road markings from street-level panoramic images for automated...
Recognition of road markings from street-level panoramic images for automated...Recognition of road markings from street-level panoramic images for automated...
Recognition of road markings from street-level panoramic images for automated...
Thomas Woudsma
 
IRJET- Road Recognition from Remote Sensing Imagery using Machine Learning
IRJET- Road Recognition from Remote Sensing Imagery using Machine LearningIRJET- Road Recognition from Remote Sensing Imagery using Machine Learning
IRJET- Road Recognition from Remote Sensing Imagery using Machine Learning
IRJET Journal
 
Survey of Some New Road Extraction Methods
Survey of Some New Road Extraction MethodsSurvey of Some New Road Extraction Methods
Survey of Some New Road Extraction Methods
theijes
 
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
ijcsit
 
Application of neural network method for road crack detection
Application of neural network method for road crack detectionApplication of neural network method for road crack detection
Application of neural network method for road crack detection
TELKOMNIKA JOURNAL
 
IRJET-Road Detection from Satellite Images
IRJET-Road Detection from Satellite ImagesIRJET-Road Detection from Satellite Images
IRJET-Road Detection from Satellite Images
IRJET Journal
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterizationecwayerode
 
Black spot analysis with Kernel Density in Budapest
Black spot analysis with Kernel Density in BudapestBlack spot analysis with Kernel Density in Budapest
Black spot analysis with Kernel Density in Budapest
Danish Menghwar
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterizationEcway2004
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterizationEcwaytechnoz
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterizationEcwaytech
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterizationEcwayt
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterizationEcwaytechnoz
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterizationEcwaytech
 
Impact of Lane Occupancy on Urban Roads
Impact of Lane Occupancy on Urban RoadsImpact of Lane Occupancy on Urban Roads
Impact of Lane Occupancy on Urban Roads
Scientific Review SR
 
,Exit Exam Tutorial -Traffic Engineering.pdf
,Exit Exam Tutorial -Traffic Engineering.pdf,Exit Exam Tutorial -Traffic Engineering.pdf
,Exit Exam Tutorial -Traffic Engineering.pdf
sandipanpaul16
 
Intelligent road surface quality evaluation using rough mereology
Intelligent road surface quality evaluation using rough mereologyIntelligent road surface quality evaluation using rough mereology
Intelligent road surface quality evaluation using rough mereology
Mohamed Mostafa
 

Similar to Thu Huong Nguyen - On Road Defects Detection and Classification (20)

A computer vision-based lane detection technique using gradient threshold and...
A computer vision-based lane detection technique using gradient threshold and...A computer vision-based lane detection technique using gradient threshold and...
A computer vision-based lane detection technique using gradient threshold and...
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
Reduced Dimension Lane Detection Method
Reduced Dimension Lane Detection MethodReduced Dimension Lane Detection Method
Reduced Dimension Lane Detection Method
 
Recognition of road markings from street-level panoramic images for automated...
Recognition of road markings from street-level panoramic images for automated...Recognition of road markings from street-level panoramic images for automated...
Recognition of road markings from street-level panoramic images for automated...
 
IRJET- Road Recognition from Remote Sensing Imagery using Machine Learning
IRJET- Road Recognition from Remote Sensing Imagery using Machine LearningIRJET- Road Recognition from Remote Sensing Imagery using Machine Learning
IRJET- Road Recognition from Remote Sensing Imagery using Machine Learning
 
Survey of Some New Road Extraction Methods
Survey of Some New Road Extraction MethodsSurvey of Some New Road Extraction Methods
Survey of Some New Road Extraction Methods
 
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
 
Application of neural network method for road crack detection
Application of neural network method for road crack detectionApplication of neural network method for road crack detection
Application of neural network method for road crack detection
 
IRJET-Road Detection from Satellite Images
IRJET-Road Detection from Satellite ImagesIRJET-Road Detection from Satellite Images
IRJET-Road Detection from Satellite Images
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterization
 
Black spot analysis with Kernel Density in Budapest
Black spot analysis with Kernel Density in BudapestBlack spot analysis with Kernel Density in Budapest
Black spot analysis with Kernel Density in Budapest
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterization
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterization
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterization
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterization
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterization
 
Automatic road crack detection and characterization
Automatic road crack detection and characterizationAutomatic road crack detection and characterization
Automatic road crack detection and characterization
 
Impact of Lane Occupancy on Urban Roads
Impact of Lane Occupancy on Urban RoadsImpact of Lane Occupancy on Urban Roads
Impact of Lane Occupancy on Urban Roads
 
,Exit Exam Tutorial -Traffic Engineering.pdf
,Exit Exam Tutorial -Traffic Engineering.pdf,Exit Exam Tutorial -Traffic Engineering.pdf
,Exit Exam Tutorial -Traffic Engineering.pdf
 
Intelligent road surface quality evaluation using rough mereology
Intelligent road surface quality evaluation using rough mereologyIntelligent road surface quality evaluation using rough mereology
Intelligent road surface quality evaluation using rough mereology
 

More from AIST

Alexey Mikhaylichenko - Automatic Detection of Bone Contours in X-Ray Images
Alexey Mikhaylichenko - Automatic Detection of Bone Contours in X-Ray  ImagesAlexey Mikhaylichenko - Automatic Detection of Bone Contours in X-Ray  Images
Alexey Mikhaylichenko - Automatic Detection of Bone Contours in X-Ray Images
AIST
 
Алена Ильина и Иван Бибилов, GoTo - GoTo школы, конкурсы и хакатоны
Алена Ильина и Иван Бибилов, GoTo - GoTo школы, конкурсы и хакатоныАлена Ильина и Иван Бибилов, GoTo - GoTo школы, конкурсы и хакатоны
Алена Ильина и Иван Бибилов, GoTo - GoTo школы, конкурсы и хакатоны
AIST
 
Станислав Кралин, Сайтсофт - Связанные открытые данные федеральных органов ис...
Станислав Кралин, Сайтсофт - Связанные открытые данные федеральных органов ис...Станислав Кралин, Сайтсофт - Связанные открытые данные федеральных органов ис...
Станислав Кралин, Сайтсофт - Связанные открытые данные федеральных органов ис...
AIST
 
Павел Браславский,Velpas - Velpas: мобильный визуальный поиск
Павел Браславский,Velpas - Velpas: мобильный визуальный поискПавел Браславский,Velpas - Velpas: мобильный визуальный поиск
Павел Браславский,Velpas - Velpas: мобильный визуальный поиск
AIST
 
Евгений Цымбалов, Webgames - Методы машинного обучения для задач игровой анал...
Евгений Цымбалов, Webgames - Методы машинного обучения для задач игровой анал...Евгений Цымбалов, Webgames - Методы машинного обучения для задач игровой анал...
Евгений Цымбалов, Webgames - Методы машинного обучения для задач игровой анал...
AIST
 
Александр Москвичев, EveResearch - Алгоритмы анализа данных в маркетинговых и...
Александр Москвичев, EveResearch - Алгоритмы анализа данных в маркетинговых и...Александр Москвичев, EveResearch - Алгоритмы анализа данных в маркетинговых и...
Александр Москвичев, EveResearch - Алгоритмы анализа данных в маркетинговых и...
AIST
 
Петр Ермаков, HeadHunter - Модерация резюме: от людей к роботам. Машинное обу...
Петр Ермаков, HeadHunter - Модерация резюме: от людей к роботам. Машинное обу...Петр Ермаков, HeadHunter - Модерация резюме: от людей к роботам. Машинное обу...
Петр Ермаков, HeadHunter - Модерация резюме: от людей к роботам. Машинное обу...
AIST
 
Иосиф Иткин, Exactpro - TBA
Иосиф Иткин, Exactpro - TBAИосиф Иткин, Exactpro - TBA
Иосиф Иткин, Exactpro - TBA
AIST
 
Nikolay Karpov - Evolvable Semantic Platform for Facilitating Knowledge Exchange
Nikolay Karpov - Evolvable Semantic Platform for Facilitating Knowledge ExchangeNikolay Karpov - Evolvable Semantic Platform for Facilitating Knowledge Exchange
Nikolay Karpov - Evolvable Semantic Platform for Facilitating Knowledge Exchange
AIST
 
George Moiseev - Classification of E-commerce Websites by Product Categories
George Moiseev - Classification of E-commerce Websites by Product CategoriesGeorge Moiseev - Classification of E-commerce Websites by Product Categories
George Moiseev - Classification of E-commerce Websites by Product Categories
AIST
 
Elena Bruches - The Hybrid Approach to Part-of-Speech Disambiguation
Elena Bruches - The Hybrid Approach to Part-of-Speech DisambiguationElena Bruches - The Hybrid Approach to Part-of-Speech Disambiguation
Elena Bruches - The Hybrid Approach to Part-of-Speech Disambiguation
AIST
 
Marina Danshina - The methodology of automated decryption of znamenny chants
Marina Danshina - The methodology of automated decryption of znamenny chantsMarina Danshina - The methodology of automated decryption of znamenny chants
Marina Danshina - The methodology of automated decryption of znamenny chants
AIST
 
Edward Klyshinsky - The Corpus of Syntactic Co-occurences: the First Glance
Edward Klyshinsky - The Corpus of Syntactic Co-occurences: the First GlanceEdward Klyshinsky - The Corpus of Syntactic Co-occurences: the First Glance
Edward Klyshinsky - The Corpus of Syntactic Co-occurences: the First Glance
AIST
 
Galina Lavrentyeva - Anti-spoofing Methods for Automatic Speaker Verification...
Galina Lavrentyeva - Anti-spoofing Methods for Automatic Speaker Verification...Galina Lavrentyeva - Anti-spoofing Methods for Automatic Speaker Verification...
Galina Lavrentyeva - Anti-spoofing Methods for Automatic Speaker Verification...
AIST
 
Oleksandr Frei and Murat Apishev - Parallel Non-blocking Deterministic Algori...
Oleksandr Frei and Murat Apishev - Parallel Non-blocking Deterministic Algori...Oleksandr Frei and Murat Apishev - Parallel Non-blocking Deterministic Algori...
Oleksandr Frei and Murat Apishev - Parallel Non-blocking Deterministic Algori...
AIST
 
Kaytoue Mehdi - Finding duplicate labels in behavioral data: an application f...
Kaytoue Mehdi - Finding duplicate labels in behavioral data: an application f...Kaytoue Mehdi - Finding duplicate labels in behavioral data: an application f...
Kaytoue Mehdi - Finding duplicate labels in behavioral data: an application f...
AIST
 
Valeri Labunets - The bichromatic excitable Schrodinger metamedium
Valeri Labunets - The bichromatic excitable Schrodinger metamediumValeri Labunets - The bichromatic excitable Schrodinger metamedium
Valeri Labunets - The bichromatic excitable Schrodinger metamedium
AIST
 
Valeri Labunets - Fast multiparametric wavelet transforms and packets for ima...
Valeri Labunets - Fast multiparametric wavelet transforms and packets for ima...Valeri Labunets - Fast multiparametric wavelet transforms and packets for ima...
Valeri Labunets - Fast multiparametric wavelet transforms and packets for ima...
AIST
 
Alexander Karkishchenko - Threefold Symmetry Detection in Hexagonal Images Ba...
Alexander Karkishchenko - Threefold Symmetry Detection in Hexagonal Images Ba...Alexander Karkishchenko - Threefold Symmetry Detection in Hexagonal Images Ba...
Alexander Karkishchenko - Threefold Symmetry Detection in Hexagonal Images Ba...
AIST
 
Artyom Makovetskii - An Efficient Algorithm for Total Variation Denoising
Artyom Makovetskii - An Efficient Algorithm for Total Variation DenoisingArtyom Makovetskii - An Efficient Algorithm for Total Variation Denoising
Artyom Makovetskii - An Efficient Algorithm for Total Variation Denoising
AIST
 

More from AIST (20)

Alexey Mikhaylichenko - Automatic Detection of Bone Contours in X-Ray Images
Alexey Mikhaylichenko - Automatic Detection of Bone Contours in X-Ray  ImagesAlexey Mikhaylichenko - Automatic Detection of Bone Contours in X-Ray  Images
Alexey Mikhaylichenko - Automatic Detection of Bone Contours in X-Ray Images
 
Алена Ильина и Иван Бибилов, GoTo - GoTo школы, конкурсы и хакатоны
Алена Ильина и Иван Бибилов, GoTo - GoTo школы, конкурсы и хакатоныАлена Ильина и Иван Бибилов, GoTo - GoTo школы, конкурсы и хакатоны
Алена Ильина и Иван Бибилов, GoTo - GoTo школы, конкурсы и хакатоны
 
Станислав Кралин, Сайтсофт - Связанные открытые данные федеральных органов ис...
Станислав Кралин, Сайтсофт - Связанные открытые данные федеральных органов ис...Станислав Кралин, Сайтсофт - Связанные открытые данные федеральных органов ис...
Станислав Кралин, Сайтсофт - Связанные открытые данные федеральных органов ис...
 
Павел Браславский,Velpas - Velpas: мобильный визуальный поиск
Павел Браславский,Velpas - Velpas: мобильный визуальный поискПавел Браславский,Velpas - Velpas: мобильный визуальный поиск
Павел Браславский,Velpas - Velpas: мобильный визуальный поиск
 
Евгений Цымбалов, Webgames - Методы машинного обучения для задач игровой анал...
Евгений Цымбалов, Webgames - Методы машинного обучения для задач игровой анал...Евгений Цымбалов, Webgames - Методы машинного обучения для задач игровой анал...
Евгений Цымбалов, Webgames - Методы машинного обучения для задач игровой анал...
 
Александр Москвичев, EveResearch - Алгоритмы анализа данных в маркетинговых и...
Александр Москвичев, EveResearch - Алгоритмы анализа данных в маркетинговых и...Александр Москвичев, EveResearch - Алгоритмы анализа данных в маркетинговых и...
Александр Москвичев, EveResearch - Алгоритмы анализа данных в маркетинговых и...
 
Петр Ермаков, HeadHunter - Модерация резюме: от людей к роботам. Машинное обу...
Петр Ермаков, HeadHunter - Модерация резюме: от людей к роботам. Машинное обу...Петр Ермаков, HeadHunter - Модерация резюме: от людей к роботам. Машинное обу...
Петр Ермаков, HeadHunter - Модерация резюме: от людей к роботам. Машинное обу...
 
Иосиф Иткин, Exactpro - TBA
Иосиф Иткин, Exactpro - TBAИосиф Иткин, Exactpro - TBA
Иосиф Иткин, Exactpro - TBA
 
Nikolay Karpov - Evolvable Semantic Platform for Facilitating Knowledge Exchange
Nikolay Karpov - Evolvable Semantic Platform for Facilitating Knowledge ExchangeNikolay Karpov - Evolvable Semantic Platform for Facilitating Knowledge Exchange
Nikolay Karpov - Evolvable Semantic Platform for Facilitating Knowledge Exchange
 
George Moiseev - Classification of E-commerce Websites by Product Categories
George Moiseev - Classification of E-commerce Websites by Product CategoriesGeorge Moiseev - Classification of E-commerce Websites by Product Categories
George Moiseev - Classification of E-commerce Websites by Product Categories
 
Elena Bruches - The Hybrid Approach to Part-of-Speech Disambiguation
Elena Bruches - The Hybrid Approach to Part-of-Speech DisambiguationElena Bruches - The Hybrid Approach to Part-of-Speech Disambiguation
Elena Bruches - The Hybrid Approach to Part-of-Speech Disambiguation
 
Marina Danshina - The methodology of automated decryption of znamenny chants
Marina Danshina - The methodology of automated decryption of znamenny chantsMarina Danshina - The methodology of automated decryption of znamenny chants
Marina Danshina - The methodology of automated decryption of znamenny chants
 
Edward Klyshinsky - The Corpus of Syntactic Co-occurences: the First Glance
Edward Klyshinsky - The Corpus of Syntactic Co-occurences: the First GlanceEdward Klyshinsky - The Corpus of Syntactic Co-occurences: the First Glance
Edward Klyshinsky - The Corpus of Syntactic Co-occurences: the First Glance
 
Galina Lavrentyeva - Anti-spoofing Methods for Automatic Speaker Verification...
Galina Lavrentyeva - Anti-spoofing Methods for Automatic Speaker Verification...Galina Lavrentyeva - Anti-spoofing Methods for Automatic Speaker Verification...
Galina Lavrentyeva - Anti-spoofing Methods for Automatic Speaker Verification...
 
Oleksandr Frei and Murat Apishev - Parallel Non-blocking Deterministic Algori...
Oleksandr Frei and Murat Apishev - Parallel Non-blocking Deterministic Algori...Oleksandr Frei and Murat Apishev - Parallel Non-blocking Deterministic Algori...
Oleksandr Frei and Murat Apishev - Parallel Non-blocking Deterministic Algori...
 
Kaytoue Mehdi - Finding duplicate labels in behavioral data: an application f...
Kaytoue Mehdi - Finding duplicate labels in behavioral data: an application f...Kaytoue Mehdi - Finding duplicate labels in behavioral data: an application f...
Kaytoue Mehdi - Finding duplicate labels in behavioral data: an application f...
 
Valeri Labunets - The bichromatic excitable Schrodinger metamedium
Valeri Labunets - The bichromatic excitable Schrodinger metamediumValeri Labunets - The bichromatic excitable Schrodinger metamedium
Valeri Labunets - The bichromatic excitable Schrodinger metamedium
 
Valeri Labunets - Fast multiparametric wavelet transforms and packets for ima...
Valeri Labunets - Fast multiparametric wavelet transforms and packets for ima...Valeri Labunets - Fast multiparametric wavelet transforms and packets for ima...
Valeri Labunets - Fast multiparametric wavelet transforms and packets for ima...
 
Alexander Karkishchenko - Threefold Symmetry Detection in Hexagonal Images Ba...
Alexander Karkishchenko - Threefold Symmetry Detection in Hexagonal Images Ba...Alexander Karkishchenko - Threefold Symmetry Detection in Hexagonal Images Ba...
Alexander Karkishchenko - Threefold Symmetry Detection in Hexagonal Images Ba...
 
Artyom Makovetskii - An Efficient Algorithm for Total Variation Denoising
Artyom Makovetskii - An Efficient Algorithm for Total Variation DenoisingArtyom Makovetskii - An Efficient Algorithm for Total Variation Denoising
Artyom Makovetskii - An Efficient Algorithm for Total Variation Denoising
 

Recently uploaded

一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
nscud
 
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
vcaxypu
 
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
74nqk8xf
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
vcaxypu
 
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
John Andrews
 
Empowering Data Analytics Ecosystem.pptx
Empowering Data Analytics Ecosystem.pptxEmpowering Data Analytics Ecosystem.pptx
Empowering Data Analytics Ecosystem.pptx
benishzehra469
 
一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单
enxupq
 
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
ahzuo
 
一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单
ocavb
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
ewymefz
 
一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单
enxupq
 
My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.
rwarrenll
 
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
2023240532
 
一比一原版(UofM毕业证)明尼苏达大学毕业证成绩单
一比一原版(UofM毕业证)明尼苏达大学毕业证成绩单一比一原版(UofM毕业证)明尼苏达大学毕业证成绩单
一比一原版(UofM毕业证)明尼苏达大学毕业证成绩单
ewymefz
 
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdfSample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Linda486226
 
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
axoqas
 
The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...
jerlynmaetalle
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
u86oixdj
 
一比一原版(CBU毕业证)不列颠海角大学毕业证成绩单
一比一原版(CBU毕业证)不列颠海角大学毕业证成绩单一比一原版(CBU毕业证)不列颠海角大学毕业证成绩单
一比一原版(CBU毕业证)不列颠海角大学毕业证成绩单
nscud
 

Recently uploaded (20)

一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
 
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
 
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
 
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
 
Empowering Data Analytics Ecosystem.pptx
Empowering Data Analytics Ecosystem.pptxEmpowering Data Analytics Ecosystem.pptx
Empowering Data Analytics Ecosystem.pptx
 
一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单
 
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
 
一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
 
一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单
 
My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.
 
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
 
一比一原版(UofM毕业证)明尼苏达大学毕业证成绩单
一比一原版(UofM毕业证)明尼苏达大学毕业证成绩单一比一原版(UofM毕业证)明尼苏达大学毕业证成绩单
一比一原版(UofM毕业证)明尼苏达大学毕业证成绩单
 
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdfSample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
Sample_Global Non-invasive Prenatal Testing (NIPT) Market, 2019-2030.pdf
 
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
 
The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
 
一比一原版(CBU毕业证)不列颠海角大学毕业证成绩单
一比一原版(CBU毕业证)不列颠海角大学毕业证成绩单一比一原版(CBU毕业证)不列颠海角大学毕业证成绩单
一比一原版(CBU毕业证)不列颠海角大学毕业证成绩单
 

Thu Huong Nguyen - On Road Defects Detection and Classification

  • 1. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University On road defects detection and classification Thu Huong Nguyen, Aleksei Zhukov, The Long Nguyen Irkutsk State Technical University The 7th to 9th April 2016 Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 1 / 21
  • 2. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Outline Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 2 / 21
  • 3. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Introduction • In this talk proposes an automatic defect pavement detection and classification system capable of identifying and retrieving pavement surface images containing block cracks, longitudinal cracks, potholes from a road pavement survey image database. • The experimental results, achieved using images from Irkutst roads, are encouraging for the development of automatic pavement defects detection systems. Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 3 / 21
  • 4. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Motivation Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 4 / 21
  • 5. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Objective • We proposes algorithms: Graph cuts method for images segmentation, Random forest for classification and image processing algorithms for features extraction. • Automatic learning methods are used, capable of learning the image statistical features from texture variations of the road background and of the defects areas. • The features studied are Histogram, Histogram chain code, Moments-hull, shape of features. Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 5 / 21
  • 6. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Main steps 1.To detect defect position (ROI). 2.Defect is described by its features. 3.To classify defect each using these different defect features such as Chain Code Histogram, Hu-Moments, size of defect region(width and length, area) and histogram of image. Our approach The following algorithms have been used: Graph cuts method for image segmentation, Random Forests algorithm for data classification. Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 6 / 21
  • 7. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Data Collection We used two datasets: 1 Our own dataset include: • 500 images are collected by camera (Canon D100 16 mega pixel). • Images are captured in conventional daylight condition. • Distance from camera to surface of road is 1m-1.2m. 2 SARA • More 700 images. • Collection by Center for Telecommunications and Multimedia, INESC TEC, Portugal. Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 7 / 21
  • 8. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Segmentation by Graph cuts method • Graph cuts uses power optimization algorithm, which is applied specifically to those models which employ a max-flow/min-cut optimization (other graph cutting algorithms may be considered as graph partitioning algorithms). • Finds strong local minima of our np-complete energy function. • Graph-cuts have been around in computer vision for quite some time (e.g. [Roy,ICCV98]). Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 8 / 21
  • 9. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Segmentation by Graph cuts method Figure: Example Graph cuts segmentation method Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 9 / 21
  • 10. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Max-Flow Problem Task : Maximize the flow from the sink to the source such that: • The flow it conserved for each node • The flow for each pipe does not exceed the capacity Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 10 / 21
  • 11. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Ford Fulkerson algorithm (1956) Input: Given a network G = (V , E) with flow capacity c, a source node s, and a sink node t Output: Compute a flow f from s to t of maximum value. f (u, v) ← 0 for all edges (u, v) while there exists a path p from s to t in the residual network Gj do Find cf (p) = min {cf (u, v) | (u, v) ∈ p} for each edges(u, v) ∈ p do f [u, v] = f [u, v] + cf (p); f [v, u] = f [v, u] − cf (p); end end Algorithm 1: Ford Fulkerson algorithm (1956) Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 11 / 21
  • 12. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Result of max flow Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 12 / 21
  • 13. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Min-Cut Problem Task : Minimize the cost of the cut • Each node is either assigned to the source S or sink T • The cost of the edge (i, j) is taken if (i ∈ S) and (j ∈ T) Finding min-cut |C| = e∈C we Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 13 / 21
  • 14. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Result of Graph cut segmentation Figure: Fig(a) Result of Graph cut segmentation method. Fig(b) Result of Random forest algorithm Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 14 / 21
  • 15. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Flowchart End Load model classification of machine learning Load road pavement image database Classification based on RandomForest algorithm Return type of defect road pavement Create features vector Features extraction Preprocessing image Begin Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 15 / 21
  • 16. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Random Forest algorithm • Random forest (or random forests) is an ensemble classifier that consists of many decision trees and outputs the class that is the mode of the class’s output by individual trees. • The method combines Breiman’s ”bagging” idea and the random selection of features. Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 16 / 21
  • 17. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Flowchart Figure: Flow chart of Random Forest algorithm [Girish (2015)]. Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 17 / 21
  • 18. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Random Forest practical consideration • Splits are chosen according to a purity measure: E.g. squared error (regression), Gini index or devinace (classification) • How to select N? Build trees until the error no longer decreases • How to select M? Try to recommend defaults, half of them and twice of them and pick the best. Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 18 / 21
  • 19. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Training time, Correct rate and Error test of Random Forest classification algorithm Random Forest 100 trees 50 trees 100 trees 100 trees depth:2 depth:2 depth:5 depth:10 Training time(sec) 250 150 50 140 Correct rate (%) 91.45 80.5 93.29 96.66 MSE 0.393 0.516 0.366 0.3 Table: Training time, Correct rate and Error test of Random Forest classification algorithm Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 19 / 21
  • 20. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University Conclusion • In this talk we suggested the novel approach for road pavements defects automatic detection and classification. This method is based on the construction of an irregular lattice derived from the original image. The lattice is composed only by straight line segments. • We also propose to use to Graph cut method, which improve quality of image segmentation. From this we can detection part of pavement defect - non defect. • The classification algorithm - Random Forest was able to correctly classify all the images contained in the two first sets. In the test set simulating the real environment the achieved classification results were 95,5%. Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 20 / 21
  • 21. Introduction Data Collection Construction of Map of Defects Defects Detection and Classification Method on Road Pavement Conclusion Irkutsk State Technical University THANK YOU SO MUCH !!! Nguyen Thu Huong, Aleksei Zhukov, The Long NguyenAIST 2016 On road defects detection and classification 21 / 21