2D Image Based Road Pavement Crack Detection By

Total Page:16

File Type:pdf, Size:1020Kb

2D Image Based Road Pavement Crack Detection By 2D IMAGE BASED ROAD PAVEMENT CRACK DETECTION BY CALCULATING MINIMAL PATHS AND DYNAMIC PROGRAMMING Manuel AVILA(1), Stéphane BEGOT(1), Florent DUCULTY(1), Tien Sy NGUYEN(2) (1) PRISME Laboratory, University of Orleans, France, (2) Vectra road engineering, www.vectra.fr Email: [email protected] ABSTRACT provide development of apparatus like AMAC© [2] in Road distress needs to be detected early to optimize road Europe or ARAN [3] in North America. These apparatus maintenance cost; automatic survey of road distress is a big collect images and various features of road pavement challenge, particularity for the detection of tiny cracks due surface. Transversal or lengthways profiles are collected. It to important variation of pavement textures. This paper is a mix of all these information that provide the diagnosis presents a new method for crack detection by finding the used to program maintenance of the road [4]. minimal path passing on each pixel of image from every We focus, in this work, on the detection of crack defect path with a length d; we propose also a dynamic on images that have these following characteristics [1], [5]: programming implementation to make it applicable in real - Intensity: crack pixels are darker than their neighbours, condition. Methods are tested on synthesis images set and a - Geometry: crack is continuous or could be composed of large set of real images. Results show that cracks as small as several continuous segments. Its length is greater than its 2mm could be detected. width and to the granulate size. These characteristics could be noised by the road texture Keywords — road distress, crack, detection, dynamic typically when they are considered separately, for example, programming pixels between granulate can be as dark as a crack pixel. Recent publications propose literature review of crack 1. INTRODUCTION detection methods [6], [7]. Most simple methods use From more than two decades, there is a growing interest in intensity thresholding to segment crack image, fixed pavement defect detection using image processing threshold in [8], [9] or fuzzy threshold in [10]. The techniques [1]. Crack detection on pavement surfaces is a segmentation results then are followed by various post- difficult problem due to the noisy rate of the pavement processing to filter-out noises. Neighbourhood is considered surfaces relative to crack size. There are different kinds of in [11], [12] or 2D Continuous Wavelet Transform in [13]. texture that can be encountered on road pavements. Cracks In [6], a region based filtering is used in segmentation can have many forms; crack size can be as small as 1 pixel step. The database containing about 100 images is in width and thinner than inter-aggregate distance. Figure 1 automatically split into two subsets used for training or for illustrates some pavement image samples. tests. Six unsupervised classifiers are used with features extracted on each region. Finally, results are given on test database with qualification of detected crack (three levels) to respond to local road administration. In [7], authors propose a method with a geodesic shadow-removal algorithm. Then a local intensity-difference measure is used for crack pixel detection. This measure used the 8-connected neighbourhood of the pixel. It mixes intensity and geometrical features of crack. To increase this Figure 1: pavement image samples: (a) longitudinal mixing, a tensor voting method is used to connect crack crack, (b) transversal crack, (c) alligator crack. pixels and to filter the others. Finally, results are presented on a set of 200 images. After this introduction, in the part 2, we propose a short review of recent works. Our minimal path method is In the next part, we propose a method that takes into detailed in the part 3. The Free Form Anisotropy (FFA) account simultaneously intensity and crack geometry based on this minimal path is defined in part 4. Different features for segmentation step. tests and results are proposed in part 5. Then we conclude. 3. MINIMAL PATH 2. RELATED WORK 3.1. Image Model: Weighted graph In the last years, many works dealing with analysis of road An image can be modelled as a graph. So, this image can be pavement surface have been proposed. The advance in considered as set of nodes (pixels) that are weighted by technologies like dynamic image capturing, laser pixel intensity. illuminating or high capacity to store huge amount of data 978-1-4799-5751-4/14/$31.00 ©2014 IEEE 783 ICIP 2014 Neighbourhood defines the set of edges that can be Input: G = <N, A> oriented weighted graph, modelling connected to a node. Instead of considering a classical 8- image through one direction. �� is a matrix with as many connected neighbourhood, we chose a 4-connected oriented nodes as pixels of the inspected image. Each node need to neighbourhood (Figure 2) that provide an oriented graph. be determined nearest neighbours at a distance from 0 to d and their weights: Nl : {weight[0..d]; NearestNeighbour[0..d]}. A defines oriented neighbours. � Output: Matrix � fill with minimal path from Nl with � length 0…d for all nodes, �� ∈ � (with Nl the node corresponding to pixel l). Algorithm 1: Searching minimal path Figure 2: Neighbourhood for oriented graph. 1. Procedure SearchMinimalPath Input: G = <N, A> 2. � 3.2. Definition of minimal path 3. � According to image model previously proposed, a minimal 4. Output: �� � ! ! path is defined as a path for which sum of pixel intensities is 5. Set � for each node �! ∈ � : ! the smallest in every path passing by a considered pixel with 6. �! . ����ℎ� 0 = ��������� �� ����� � ! ! a length d. 7. �! . �����������ℎ���� 0 = �! A minimal path is composed of 2-oriented graphs 8. For length k from 1 to d do ! � (Figure 3). This choice prevents the algorithm against path’s 9. For each node �! ∈ � do loopback. 10. Search neighbour ��! ∈ (��������ℎ����� �� �!) which has the minimum weight for length k-1 : 11. ��!,!"# = ������(��!. ����ℎ�[� − 1]) ! 12. Update �! : 13. �!. ����ℎ� � = � + ��!. ����ℎ�[� − 1] 14. �!. �����������ℎ���� � = ��!,!"# 15. End For Each 16. End for length Figure 3: Sample of minimal path merged with 17. End procedure 2-oriented graphs. 4. FREE-FORM ANISOTROPY For each pixel of the image, we found four minimal paths Free-Form anisotropy is computed by using minimal paths, with help of 4-oriented graphs (Figure 4), which can be used which have been selected by dynamic programming. For to compute Free-Form Anisotropy [14]. each minimal path extracted for the four orientations (Figure 4), features are calculated and converted into sources using possibility theory [16] (Figure 5). Source πi is composed of mean µi and standard deviation σi of pixel intensities of a minimal path. Figure 4: Minimal paths of pixel l according to four orientations: (a) transversal, (b) longitudinal, (c) diagonal 135°, (d) diagonal 45°. h(,ππ )sup{min(,)}= ππ (4.1) Our minimal path is different from Dijkstra path [15] that 12 12 finds the path with minimal cost between two points Figure 5: Sup-min function to evaluate degree of regardless to their length. In our case, the minimal path is coherence between two sources. defined from the centre pixel towards two unknown extremities at a fixed distance d. This path is supposed to be To avoid a learning step for backgrounds estimation, we a crack path when the centre pixel is a cracking pixel. suppose that crack affects texture only in one orientation. Then we can use, for the background source, πmax the 3.3. Algorithm: Searching minimal path minimal path that has the maximum weight. Considering crack characteristics and definition of 978-1-4799-5751-4/14/$31.00 ©2014 IEEE 784 ICIP 2014 minimal path, we observe that (for samples in Figure 6): the method to filter the background and enhance crack. In a - if pixel l is part of a crack, the crack is one of second test, we compare results of our method with one the oriented minimal paths (Figure 6a), this one developed in France with the same kind of images. Then we that has the minimal weight πmin, give some results on a database composed of more than - if pixel l is a defect-free pixel, variation 16.000 images captured on highways of French road between weight of minimal paths is smaller network. than in previous case (Figure 6c). 5.1. Tests on synthetic cracks Different kinds of pavement images have been used. In Table 1, we see textures attributes for each kind of texture: granulate size, contrast. The two last parameters are Haralick attributes [17]. Image Granulate size Contrast Correlation Entropy (mm)min/max 1 0/4 308.1 0,001 8,7 2 0/10 537,3 0,0005 9,38 3 0/13 612,4 0,0032 9,4 4 0/18 876,72 0,00031 9,9 Table 1: Texture attributes of selected images. On these images (Figure 7), we generate synthetic cracks. Crack pixels intensities were randomly chosen in a range near crack pixel intensity. Cracks have “no segment” forms. Figure 6: FFA computed for 2 pixels with d = 30. (a,b) crack pixel (c,d) defect-free pixel. The FFA of a pixel l can be formulated as: Figure 7: Synthetic cracks on different kinds of ��� � = 1 − ℎ(�!"#, �!"#) (4.2) pavement images. πmin and πmax are found comparing weight of the four minimal paths (Figure 6) with pixel l at the centre of the In Figure 8, we see FFA results for two distances d=4 or path with (2*d+1) length. We are not able to compute the d=32. In each case, all cracks are fully detected. If this distance d but this distance must be chosen larger than the distance is too small, FFA is not able to filter background.
Recommended publications
  • Road Texture and Tire Noise
    Copyright SFA - InterNoise 2000 1 inter.noise 2000 The 29th International Congress and Exhibition on Noise Control Engineering 27-30 August 2000, Nice, FRANCE I-INCE Classification: 1.3 ROAD TEXTURE AND TIRE NOISE J.-F. Hamet, P. Klein INRETS, 25 av. F. Mitterrand, F69675, Bron, France Tel.: +33(0)472142402 / Fax: +33(0)472376837 / Email: [email protected] Keywords: TIRE, ROAD, NOISE, TEXTURE ABSTRACT The research project presented here addresses the influence of road texture profile on tire noise. It is deemed more appropriate, when seeking for correlation between road profile and tire noise spectra, to ’envelope’ the road profile before evaluating its spectrum. Two approaches are taken to tackle the problem. A static approach based on evaluating the contact between two plane surfaces. A dynamic approach based on a rolling tire model. Since the latter enables the evaluation of tire noise from any given road texture profile, it is also used to get a better grasp of the phenomena. Only the fundamentals of the processes are presented: experiments will be performed in the coming years. The static approach is worked in the PREDIT project ”Relation between road texture and the tire noise” [1]. The partners are: INRETS, LCPC, ENPC, MICROdB, Gerland Routes, Colas S.A. The dynamic approach is developed in the frame of the European project SI.R.U.US. The partners are Autostrade (it), CRR (be), Pavimental (it), INRETS (fr), SACER (fr), Argex (be), LNEC (pt). 1 - INTRODUCTION Although some 20 years elapsed since the basics of the road texture influence on tire noise were given [2] the principles for designing low noise surfaces remain mostly qualitative [3].
    [Show full text]
  • Texture-Based Vanishing Point Voting for Road Shape Estimation
    Texture-Based Vanishing Point Voting for Road Shape Estimation Christopher Rasmussen Dept. Computer & Information Sciences University of Delaware [email protected] Abstract Many rural roads lack sharp, smoothly curving edges and a homogeneous surface appearance, hampering traditional vision-based road-following methods. However, they often have strong texture cues parallel to the road direction in the form of ruts and tracks left by other vehicles. This paper describes an unsupervised al- gorithm for following ill-structured roads in which dominant texture orientations computed with Gabor wavelet filters vote for a consensus road vanishing point lo- cation. The technique is first described for estimating the direction of straight-road segments, then extended to curved and undulating roads by tracking the vanishing point indicated by a differential “strip” of voters moving up toward the nominal vanishing line. Finally, the vanishing point is used to constrain a search for the road boundaries by maximizing texture- and color-based region discriminant func- tions. Results are shown for a variety of road scenes including gravel roads, dirt trails, and highways. 1. Introduction Many complementary strategies for visual road following have been developed based on certain assumptions about the characteristics of the road scene. For ex- ample, edge-based methods such as those described in [17, 16, 1] are often used to identify lane lines or road borders, which are fit to a model of the road curvature, width, and so on. These algorithms typically work best on well-engineered roads such as highways which are paved and/or painted, resulting in a wealth of high- contrast contours suited for edge detection.
    [Show full text]
  • Guidance Manual for the Implementation of Low-Noise Road Surfaces
    arsenal Research, Austria TKTI, Lithuania www.arsenal.ac.at www.tkti.lt BRRC, Belgium INRR, Luxembourg www.brrc.be RWS DWW, Netherlands CRBL, Bulgaria www.minvenw.nl/rws/dww IGH, Croatia NPRA, Norway www.igh.hr www.vegvesen.no VIENNAV I E N N A CDV, Czech Republic IBDiM, Poland www.cdv.cz www.ibdim.edu.pl DRI, Denmark LNEC, Portugal www.roadinstitute.dk www-ext.lnec.pt Sustainable road TECER, Estonia CESTRIN, Romania surfaces for traffic www.teed.ee www.cestrin.ro CESTRIN ITALGRIP s.r.l. noise control ROADS SAFETY BY SURFACE TREATMENT LCPC, France IP,Serbia-Montenegro www.lcpc.fr www.highway.co.yu BASt, Germany VUD,Slovakia www.bast.de www.vud.sk ZAG,Slovenia KEDE, Greece www.zag.si KTI, Hungary CEDEX, Spain www.kti.hu www.cedex.es GUIDANCE MANUAL FOR THE IMPEMENTATION OF LOW-NOISE ROAD SURFACES ROAD OF LOW-NOISE THE IMPEMENTATION FOR GUIDANCE MANUAL PRA, Iceland VTI, Sweden www.vegagerdin.is www.vti.se NRA, Ireland LAVOC, Switzerland www.nra.ie lavoc.epfl.ch Guidance Manual for the FEHRL REPORT 2006/02 - ANAS, Italy TRL, United Kingdom Implementation of Low-Noise www.enteanas.it www.trl.co.uk Road Surfaces S VALST IJA S C V E T L A I L LAD, Latvia L A www.fehrl.org S T D V www.lad.lv A I J O A R S E S T T A FEHRL OVERVIEW FEHRL is a registered International Association with a permanent Secretariat based in Brussels. Formed in 1989 as the Forum of European National Highway Research Laboratories, FEHRL is governed by the Directors of each of the national institutes.
    [Show full text]
  • A Classification of Asphalt Surfacing Textures Based on 3D Imagery
    ALMA MATER STUDIORUM - UNIVERSITÀ DI BOLOGNA FACOLTA’ DI INGEGNERIA CORSO DI LAUREA IN INGEGNERIA CIVILE M DICAM – Dipartimento di Ingegneria Civile, Ambientale e dei Materiali TESI DI LAUREA in CONTEXT SENSITIVE DESIGN IN TRANSPORTATION INFRASTRUCTURES A CLASSIFICATION OF ASPHALT SURFACING TEXTURES BASED ON 3D IMAGERY ELABORATO FINALE DI: RELATORE: Alessandro Labbate Dott Ing. Cesare Sangiorgi CORRELATORI: Prof. Ing. David Woodward Dott. Ing. Claudio Lantieri Anno Accademico 2001/12 KEY WORDS: SMA Skid Resistance Texture Contact area RTM INDEX INTRODUCTION ....................................................................................................... 1 CHAPTER 1 – Tyre/Road interaction: Skid Resistance and Road Texture ............. 5 1.1 – INTRODUCTION .................................................................................................................. 5 1.2 – FRICTION AND SKID RESISTANCE ................................................................................ 7 1.3 – PRINCIPLES OF FRICTION GENERATION ..................................................................... 7 1.3.1 –Longitudinal Friction Principle .................................................................................... 9 1.3.2 – Transverse Friction Principle .................................................................................. 11 1.4 – IMPORTANT PARAMETERS FOR ROAD SURFACE .................................................... 13 1.4.1 – Influence of texture on Skid Resistance ....................................................................
    [Show full text]
  • Road Surface Textures Classification Using Opening-Based Image
    Stephane Paquis ROAD SURFACE TEXTURES CLASSIFICATION USING OPENING-BASED IMAGE PROCESSING 1 2 Stephane´ PAQUIS1 , Vincent LEGEAY and Hubert KONIK 1 Lab. Central des Ponts et Chaussees´ - Nantes BP 4129 44341 Bouguenais cedex, France [email protected] 2 Lab. Ingenierie´ de la Vision Universite´ Jean Monnet BP 505 42007 Saint-Etienne´ cedex 01, France KEY WORDS: texture analysis, road surface inspection, hierarchical process, multiresolution cooccurrence matrix, mor- phological pyramid ABSTRACT This paper deals with an innovative approach for achieving an automatic vision system for road surface texture classifi- cation. A road surface is composed by aggregates with a particular grain size distribution and the mortar matrix. From a vision point of view, road surface images can be described as a set of objects of high intensities puts on a low intensity uniform background. In image processing, mathematical morphology provides a set of tools used to compare parts of an image with structuring elements of various sizes and shapes. Information about objects can be obtained by applying successives openings with structuring elements of increasing sizes. Our aim is to characterize 4 road surface textures with different size and shape distributions. In order to avoid the choice of a set of structuring elements, we define an opening 2 transformation based on quadtree approach. At each step, each non overlapping 2 blocks take one new grey level, corresponding to its lowest one. Variations of texture observed at each step are studied through an original cooccurrence matrix. Such a matrix is computed between two consecutive pyramid levels. Classification is carried out by extracting textural features from the set of matrices.
    [Show full text]
  • Optimization of Thin Asphalt Layers – State-Of-The-Art Review
    Optimization of Thin Asphalt Layers – State-of-the-Art Review By Ulf Sandberg* (ed.), Jørgen Kragh**, Luc Goubert***, Hans Bendtsen**, Anneleen Bergiers***, Krishna P. Biligiri*, Robert Karlsson*, Erik Nielsen**, Erik Olesen**, Stefan Vansteenkiste*** *Swedish National Road and Transport Research Institute (VTI) ** Danish Road Institute (DRI) *** Belgian Road Research Centre (BRRC) Photo by Hans Bendtsen Deliverable No. 1 – Final version – 30 April 2011 ERA-NET ROAD Project "Optimization of thin asphalt layers" II PREFACE ERA-NET ROAD is a consortium comprising national European road administrations. Its purpose is to strengthen European road research by coordinating national and regional research programmes and policies. In 2009 ERA-NET ROAD issued a call for tenders on a transnational research project titled “Optimization of thin asphalt layers”. The project is coordinated by a Project Executive Board with representatives of six European road administrations: Mats Wendel (chair), Swedish Transport Administration, Sweden Thomas Asp (secretary), Swedish Transport Administration, Sweden Tony K. Andersen, Ministry of Transport, Danish Road Directorate, Denmark Jostein Aksnes, Norwegian Public Roads Administration, Norway David Lee, Department for Transport, Highways Agency, United Kingdom Christian Pecharda, FSV; Austrian Association for Research on Road - Rail – Transport, Federal Ministry of Transport, Innovation and Technology, Austria Christiane Raab, Empa, Swiss Federal Laboratories for Materials Testing and Research, Swiss Federal Roads Authority, Switzerland The Project Consortium consisting of the Danish Road Institute, the Belgian Road Research Centre and the Swedish National Road and Transport Research Institute won the tender and the project was initiated 1 July 2009. The researchers carrying out the project are the authors of the present report with support from colleagues with special expertise.
    [Show full text]
  • Road Marking IS Road Safety
    Potters Asia Pacific ‘World Leaders in Glass Bead Technology’ Road Marking IS Road Safety Bob Carnaby Technical Services Manager Potters Asia Pacific [email protected] Abstract The majority of traffic fatalities in Australia occur at night. The death rate is estimated to be between three to four times higher at night than during the day. In recent a survey across Australia (AITPM, March 2004), it has been noted that the standards for road-marking, in the area of night time visibility, are either set at very low performance levels or are non existent. There have been many studies and experiments that demonstrate that accident rates can be significantly further reduced if the road markings were to be maintained to safer standards. This paper presents some of the results from this and other recent global research, and looks at how road-markings can figure in reducing crashes. It suggests that the measure of road-marking performance for both day and night, and in both wet and dry conditions, should be used as a tool in future accident investigations. The statistics would then become more meaningful, the fatalities and serious injuries could be reduced, and the cost benefit of safer performing road-markings may then be realised. Road Marking IS Road Safety. Call For Action There has been more than sufficient research to prove the worth of the humble painted pavement markings, in the role of reducing road trauma. Many new pavement marking systems have been developed, that are capable of delivering safer outcomes, for the benefit of all road users.
    [Show full text]
  • Automated Detection of Multiple Pavement Defects 1
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Apollo 1 Automated Detection of Multiple Pavement Defects 2 Stefania C. Radopoulou1 and Ioannis Brilakis2 3 1 PhD student, Division of Civil Engineering, Department of Engineering, University of 4 Cambridge, ISG-62, Trumpington Street, Cambridge, CB2 1PZ, UK (corresponding author). E- 5 mail: [email protected] 6 2 Laing O’Rourke Lecturer of Construction Engineering, Department of Engineering, University 7 of Cambridge, BC2-07, Trumpington Street, Cambridge, CB2 1PZ, UK. Email: 8 [email protected] 9 Abstract: 10 The World Bank reports that pavement networks carry more than 80% of a country’s total 11 passenger-km and over 50% of freight ton-km, justifying the importance of efficiently 12 maintaining pavements. Knowing the pavement condition is essential for efficiently deciding on 13 maintenance programs. Current practice is predominantly manual with only 0.4% of inspections 14 happening automatically. All methods in the literature aiming at automating condition 15 assessment focus on two defects at most, or are too expensive for practical application. In this 16 paper, we propose a low-cost method that automatically detects pavement defects simultaneously 17 using parking camera video data. The types of defects addressed in this paper are two types of 18 cracks, longitudinal and transverse, patches and potholes. The method uses the Semantic Texton 19 Forests (STFs) algorithm as a supervised classifier on a calibrated region of interest (myROI), 20 which is the area of the video frame depicting only the usable part of the pavement lane.
    [Show full text]
  • Ensemble Mode and Singular Value Based Road Texture-Skid Study
    coatings Article Ensemble Mode and Singular Value Based Road Texture-Skid Study Tuo Fang 1 , Runhua Guo 2,* and Youqiang Si 3 1 School of Civil and Environmental Engineering, University of New South Wales (UNSW), Sydney 2052, Australia; [email protected] 2 Department of Civil Engineering, Tsinghua University, Beijing 100084, China 3 Shandong Hi-Speed Linyi Operation Management Center, Zaozhuang 277000, China; [email protected] * Correspondence: [email protected] Abstract: Traffic accidents occur frequently every year. Skid-resistance performance is an important indicator in evaluating road safety. In this paper, the road surface texture information is obtained by a line laser scanner. The original two-dimensional (2D) signal is decomposed into eight intrinsic mode functions by complementary ensemble empirical mode decomposition (CEEMD). Eight intrinsic mode functions compose an 800 × 8 data matrix. The matrix is decomposed by singular value decomposition (SVD), and singular value vectors are obtained. The singular values are summed and linearly fitted to the friction value measured by the British pendulum friction meter. The study finds that the singular value sum of one to five has a good linear correlation with the friction value with the goodness of fit greater than 0.8. At the same time, contour arithmetic mean deviation Ra is applied for verification. The results show that the singular value sum has a strong correlation with Ra. When the number of Intrinsic Mode Function (IMF) decomposition is greater than eight, there is a good correlation between the number of IMF and the friction value from IMF2 to IMF6. When the 2 number of IMF decomposition is less than eight, the singular value sum numbers with R more than 0.8 gradually decrease.
    [Show full text]
  • Study on the Effect of Surface Texture Saturation of Road Pavements with Drop on Road Markings Pasetto M
    Study on the effect of surface texture saturation of road pavements with drop on road markings Pasetto M. - Manganaro A. Study on the effect of surface texture saturation of road pavements with drop on road markings Marco Pasetto Andrea Manganaro University of Padova Construction and Transport Dept. Via Marzolo, 9 - 35131 Padova (Italy) Phone +39 049 8275569 Fax +39 049 8275577 E-mail: [email protected] E-mail: [email protected] ABSTRACT Road markings contribute greatly towards improving road safety standards. For some time now, manufacturers, researchers and road management authorities have been interested in the development of high-performance products in terms of durability, night-time retroreflection, visibility in wet conditions and more recently, skid resistance. To meet these functional requisites, the latest generation of products for road markings often contain mixtures of glass beads and aggregates, of varying quantities and types, which in many cases involves an appreciable alteration of the skid resistance parameters of road pavements (MTD, PTV), due to the partial saturation of the road surface micro- and macro-texture. This paper reports the results of intensive road monitoring of products with drop on materials for road marking, during which the characteristic road texture parameters were measured and compared, of both asphalt pavement and markings, using the most common international indexes (SFC, SN, IFI) to obtain the specific skid resistance coefficients for each of them. Crossed comparison of the different parameters determined the effect of saturation of the road pavement surface texture caused by the presence of road markings with drop on materials, and also evaluated the decline of performance in terms of skid resistance.
    [Show full text]
  • Research Trends in Pavement Management During the First Years of the 21St Century: a Bibliometric Analysis During the 2000–2013 Period
    CORE Metadata, citation and similar papers at core.ac.uk Provided by Archivo Digital para la Docencia y la Investigación applied sciences Article Research Trends in Pavement Management during the First Years of the 21st Century: A Bibliometric Analysis during the 2000–2013 Period Heriberto Pérez-Acebo 1,* ID , Alaitz Linares-Unamunzaga 2 ID , Ricardo Abejón 3 and Eduardo Rojí 4 1 Mechanical Engineering Department, University of the Basque Country UPV/EHU, Po Rafael Moreno Pitxitxi, 2, 48013 Bilbao, Spain 2 Department of Civil Engineering, University of Burgos, c/Villadiego, s/n, 09001 Burgos, Spain; [email protected] 3 Chemical and Biomolecular Engineering Department, University of Cantabria, Avda. Los Castros, s/n, 39005 Santander, Spain; [email protected] 4 Mechanical Engineering Department, University of the Basque Country UPV/EHU, Alda. Urquijo, s/n, 48013 Bilbao, Spain; [email protected] * Correspondence: [email protected]; Tel.: +34-94-601-7820 Received: 28 May 2018; Accepted: 20 June 2018; Published: 26 June 2018 Abstract: A bibliometric analysis based on Scopus database was carried out to identify the global research trends related to pavement management area from 2000 to 2013, and to improve the understanding of the research topics in that period. The results reveal two stable periods of annual publications, from 2000 to 2002 with an average rate of 27, and from 2003 to 2010 with a value of 51; and a period with an increasing production rate of 20 publications per year after 2010. According to the document-type distribution, articles and conference papers have almost the same contribution. The most productive country was the United States, followed by Canada and China.
    [Show full text]
  • Southeast Transportation Consortium
    Southeast Transportation Consortium Final Report 515 Asphalt Surface Treatment Practice In Southeastern United States by Hesham Ali, Ph.D., P.E. Mojtaba Mohammadafzali Florida International University Published by: 4101 Gourrier Avenue | Baton Rouge, Louisiana 70808 | (225) 767-9131 | www.ltrc.lsu.edu Asphalt Surface Treatment Practice In Southeastern United States by Hesham Ali, Ph.D., P.E. And Mojtaba Mohammadafzali Florida International University July 2014 Table of Contents SUMMARY CHAPTER 1 INTRODUCTION……………………………………………………………………………….2 PAVEMENT SURFACE TREATMENT ....................................................................................................... 2 SCOPE OF WORK ......................................................................................................................................... 2 METHODOLOGY ......................................................................................................................................... 3 GENERAL SURVEY RESULTS ................................................................................................................... 3 CHAPTER 2 FOG SEALS…………………………………...…………………………………………………6 TECHNIQUE DESCRIPTION ....................................................................................................................... 6 REVIEW OF RECENT WORK ..................................................................................................................... 7 SASHTO STATE OF PRACTICE (SURVEY RESULTS) ...........................................................................
    [Show full text]