Next Article in Journal
Comparison of Pulse-Echo Tomography and Through-Transmission Ultrasonic Test for UPV Characterization of Building Materials
Previous Article in Journal
Advancing Road Infrastructure Safety with the Remotely Piloted Safety Cone
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Concrete Bridge Crack Detection Using Unmanned Aerial Vehicles and Image Segmentation

1
Key Laboratory of CNC Equipment Reliability, Ministry of Education, Jilin University, Changchun 130022, China
2
School of Mechanical and Aerospace Engineering, Jilin University, Changchun 130022, China
*
Author to whom correspondence should be addressed.
Infrastructures 2025, 10(7), 161; https://doi.org/10.3390/infrastructures10070161
Submission received: 2 June 2025 / Revised: 22 June 2025 / Accepted: 26 June 2025 / Published: 27 June 2025

Abstract

Concrete bridge cracks are critical indicators for maintenance planning. Traditional visual inspections are often subjective, labor-intensive, and time-consuming, requiring close-range access by inspectors. In contrast, UAV-based remote sensing, combined with advanced image processing, offers a more efficient and accurate solution. This study proposes an enhanced crack detection method combining Laplacian of Gaussian (LoG) filtering and Otsu thresholding to improve segmentation accuracy through background noise suppression. The proposed approach extracts key crack characteristics—including area, length, centroid, and main direction—enabling precise damage assessment. Experimental validation on a real bridge dataset demonstrates significant improvements in detection accuracy. The method provides a reliable tool for automated structural health monitoring, supporting data-driven maintenance decisions.

1. Introduction

Civil infrastructure safety has been an actively researched topic over the past decade [1,2,3]. Concrete bridges are particularly susceptible to fatigue cracks due to heavy traffic loads and environmental exposure [4,5,6,7]. Accumulated cracks progressively reduce load-bearing capacity and may ultimately cause complete bridge failure [8,9]. Consequently, stringent inspection regulations have been established globally. For instance, Chinese and U.S. standards implement graded maintenance strategies based on crack width specifications [10,11], mandating quarterly inspections for concrete bridges and immediate repairs for cracks exceeding 3 mm.
Conventional damage quantification requires advanced non-destructive evaluation techniques to assess structural deterioration. Accurate crack measurement is essential for determining bridge damage status and functional conditions [12]. Studies have proposed innovative methodologies: Shannon entropy integrated with statistical indices and fuzzy logic classifiers for cable-loss detection in cable-stayed bridges [13]; comparative analyses of damage detection algorithms (e.g., six fractal dimensions (FDs), homogeneity index (HI), and Shannon entropy index (SEI)), demonstrating HI and SEI’s superior capability in detecting, localizing, and severity-classifying damage scenarios [14]; and partial-model-based approaches employing stiffness separation techniques for parameter estimation in long-span steel truss bridges [15,16]. Additionally, empirical mode decomposition and Hilbert–Huang Transform enable damage identification by extracting stiffness-change-induced impulse peaks from measurement data [17].
Compared to traditional manual inspections, unmanned aerial vehicle (UAV) damage detection offers significant advantages in operational efficiency, labor reduction, and comprehensive data documentation [18,19,20]. UAVs equipped with cameras access hard-to-reach areas for surface imaging. However, manual review of large-scale image datasets (e.g., SDNET2018 containing 56,000 bridge images [21]) is error-prone. Image processing technologies thus enhance inspection accuracy and efficiency. For instance, the six-rotor UAV “Ptarmigan” was utilized for bridge inspections using image-based 3D modeling techniques [22].
Cracks—the most prevalent damage in concrete bridges—manifest as threshold variations in RGB images. Edge-detector-based algorithms (e.g., Roberts operator, Fourier transform, Sobel filter, Canny filter, Laplacian of Gaussian, and Gaussian filter [23,24,25,26]) identify cracks via threshold segmentation and gradient computation. Despite over two decades of application, these methods remain widely adopted for spatial/frequency-domain pixel gradient analysis. Unlike machine learning approaches [27,28,29,30,31,32], edge detection eliminates complex data labeling and model training, offering notable time-efficiency advantages. Studies comparing six-filter edge detection with deep convolutional neural networks [33] and similar cross-method evaluations across diverse image datasets [34,35,36] further validate this paradigm.
Recent advances in UAV-based crack identification include: real-bridge crack width quantification [37] and detection of 116 concrete cracks using 647 aerial images (GSD: 0.21 cm/pixel) [38]. Nevertheless, existing research predominantly focuses on detection outcomes, with limited analysis of crack geometric characteristics. Background interference-induced false identifications also persist, undermining detection model accuracy.
This paper proposes an enhanced crack detection method that integrates Laplacian of Gaussian (LoG) filtering with Otsu thresholding to suppress noise and improve segmentation accuracy. The approach enables extraction of critical crack characteristics (e.g., area, length) for damage assessment. Experimental results demonstrate markedly improved detection accuracy compared to conventional solutions, providing reliable technical support for automated structural health monitoring and data-driven maintenance decisions.

2. Methodology

2.1. Workflow

Figure 1 illustrates the proposed bridge crack detection workflow. First, grayscale conversion preprocessing is performed on the original images in the dataset to obtain grayscale images, followed by median filtering. Then, according to the improved threshold gradient (Otsu + LoG) proposed in this paper, edges in the image are detected to obtain a binary image. After that, all straight lines in the background and edges are filtered to divide the image into two groups: cracked areas and non-cracked areas, which is the contour image in Figure 1b. Finally, all detected cracks are analyzed to obtain information such as their area, centroid, main direction, perimeter, and length.

2.2. Image Preprocessing

The purpose of this process is mainly to reduce the negative effects of noise to prevent false detection and enhance positive effects of following edge detection. The first step is to convert the RGB image to the grayscale image, for a better performance in following edge detection according to previous research [33,39,40,41]. Typical electronic imagery is recorded as digital values from minimum (0) to maximum (255) levels by three basic RGB colors. The conversion of the RGB image to grayscale image can be formulated as:
I x , y = 0.2989 R x , y + 0.5870 G x , y + 0.1104 B ( x , y )
where I(x, y) is the pixel value in the grayscale image at the (x, y) coordinate and R(x, y), G(x, y), B(x, y) are the corresponding pixel values of red, green, blue channels in the RGB image, respectively.
Since concrete surfaces are inherently rough and noisy, even in undamaged areas, a nonlinear median filter is applied to the image to reduce “salt and pepper” noise and smooth the surface.

2.3. Laplacian of Gaussian (LoG)

There are many image-processing algorithms that detect damage in images using different edge filters, which are applied as a kernel (a small matrix of values) through a mathematical operation known as convolution [42]. We compared different edge detection filters using a dataset containing 100 concrete crack images. The results demonstrate that the LoG operator achieves the lowest noise ratio, the highest damage recall rate, and superior edge continuity compared to other methods. The procedure consists of two steps, combining Gaussian smoothing and Laplacian operator. Thus, it achieves both high precision and low noise, the process for which is detailed as follows. First, the noise is reduced by a two-dimensional Gaussian smoothing filter, which is described as follows:
G x , y = 1 2 π σ 2 e x p ( x 2 + y 2 2 σ 2 )
where x and y are the spatial coordinates in image I(x, y), σ is the distribution parameter kernel. Then, the Laplacian operator considers both edges and noise in the image, using the second order differential operator:
2 = 2 I x 2 + 2 I y 2
At last, LoG filter was formulated as:
L o G = 2 ( G x , y ) = 2 G ( x , y ) x 2 + 2 G x , y y 2 = x 2 + y 2 2 σ 2 4 σ 4 e x p ( x 2 + y 2 2 σ 2 )

2.4. Crack Contour Detection

According to the threshold setting, all process image pixels were classified into two types in Equation (5):
  • If a candidate pixel’s value (Pv) is less than the threshold value, the pixel was identified as undamaged area and the pixel value in I(x, y) was set to 0.
  • On the contrary, if a candidate pixel’s value (Pv) is equal or greater than the threshold value, the pixel was identified as damaged area and the pixel value in I(x, y) was set to 1.
I x , y = 0 ,   P v x , y < T 1 ,   P v x , y T
After this step, the RGB format image was converted to binary image, as shown in Figure 2. This threshold is crucial to the damage detection result, because high thresholds indicate missing damages and low thresholds indicate noise undamaged areas.
The Otsu method is a common method: the basic principle is to calculate a threshold to divide all pixels in an image into two parts, image pixels and the background. The optimal threshold calculation is performed by maximizing the between-class variance in image pixels. The image contains many grey levels: average lower grey value than assumed threshold is m1 and average greater grey value than assumed threshold is m2.
σ 2 = p 1 ( m 1 M ) 2 + p 2 ( m 2 M ) 2
where M is average grey value of global pixel, M = p 1 m 1 + p 2 m 2 , m 1 = 1 p 1 i = 0 k p i i , m 2 = 1 p 2 i = k + 1 l p i i , where p 1 = i = 0 k p i , p 2 = i = k + 1 l p i , i is the grey value.
Thus, the threshold that maximizes σ 2 is calculated as the final segmentation threshold. In the case of concrete damage detection, there exists the obvious shortcoming that damage only occupies a small number of pixels, which leads to a relatively large threshold and a large amount of noise. It should be noted that if the segmentation threshold is further reduced below a certain critical value, the number of false positive pixels increases. Although there are noise filters in subsequent steps, false positives need to be avoided. In our improved method, the segmentation threshold was calculated after the LoG filter and their comparison was shown in Figure 3. The preprocessing step of LoG makes sense and decreases these errors in crack detection.

2.5. Crack Feature Calculation

2.5.1. Area Calculation

Following image processing, another assignment is to calculate the size of these cracks. The areas of all detected cracks are calculated by:
A d = G S D 2 A p
where Ad is area of this damage (mm2), Ap is amount of pixels, A p = i = 1 r o w ( C m a x C m i n ) , and GSD is ground sample distance (mm) depended on flight height H and focal length f:
G S D = H f C s
in which Cs represents camera sensor size, an inherent attribute of image camera.
Although filter algorithms are applied, the uneven distribution in concrete surfaces may cause small noise area and decrease detection accuracy. To remove these small contours on the binary image, the number of pixels in every area is calculated and the areas less than 50 pixels were eliminated.

2.5.2. Centroid Location

Crack position in the concrete structure is crucial for the following maintenance. The centroid of detected cracks is calculated by moments, an inherent attribute dependent on graphic shape. Spatial moments of graphs are basic concept in probability and statistics, and the calculation rule is
M i j = x y ( P x , y · x i y j )
In which x and y are pixel position, P(x, y) is pixel value in the position of (x, y), i and j are coefficient of spatial moment. According to zero-order and first-order spatial moment of graphs, the coordinate (cx, cy) calculation formula of the graph centroid is
c x = M 10 M 00 ,   c y = M 01 M 00

2.5.3. Main Direction

The main direction is the possible extension direction of the crack, and detailed calculation of the main direction angle can be formulated as
θ = a r c t a n ( 2 b a c )
In the formulation, a = M 20 M 00 c x 2 , b = M 10 M 00 c x · c y , c = M 02 M 00 c y 2 .

2.5.4. Length Calculation

Regarding the damage length calculation, we use distance between two vertical lines in crack direction. According to the crack center (cx, cy) and the main direction calculated below, a line of constant slope and its vertical lines were displayed in the edge of the graph, as shown in Figure 4. The distance between two vertical lines is marked as crack length.
The line pass crack center can be formulated as
y c y = t a n θ · ( x c x )
The intersection point with two vertical lines are denoted as (cx1, cy1) and (cx2, cy2), the distance between two points is calculated as crack length.

3. Results

3.1. Experimental Environment

The experiment was conducted on Gushanhe Bridge, which is located in Yitong County, Siping City, China. This bridge is 54 m in length, 7 m in width, and stands 6 m above the river, as depicted in Figure 5. The concrete structure of this bridge’s side surface was taken as test target in this experimental validation for the following reasons:
  • Logistics: A village is located nearby, and it was easy to transport and recharge equipment;
  • Security considerations: Travel was conducted discreetly, and the number of operators was minimized. This research did not attract a crowd, which would have been unsafe. Also, drones often attract audiences who want to talk and ask questions, thereby distracting the operators;
  • Legal issues: The bridge is in open country distant from airports and no-fly zones.
The DJI Air 3 UAV was utilized in this study, featuring a total weight of 720 g and capable of achieving a maximum vertical acceleration of 10 m/s2. With a maximum horizontal flight speed of 21 m/s and an extended hover endurance of 46 min, the system demonstrated precise positioning capabilities including vertical accuracy < 0.1 m and horizontal accuracy < 0.3 m. Equipped with dual imaging sensors (wide-angle and medium telephoto cameras), this configuration provided comprehensive visual coverage for structural inspection tasks.

3.2. Damage Detection

The algorithm was validated using all cracks detected on the side surfaces of the study bridge. Damage detection results in whole workflow were clarified by three example photos in Figure 6. Five phases of damage detection results were shown: (1) origin images—original bridge side surface images shot by UAV, (2) grayscale images—grayscale conversion for a better performance in following steps, (3) smooth images—eliminate noises in concrete surface, (4) threshold images—threshold segmentation results by improved Otsu, (5) contour images—damage contour detection after small area filtering.

3.3. Damage Assessment

All detected damage was applied for analyzing crack characteristics and the obtained results are compared with validation measurements. A caliper was used to measure crack attributes. The geometric characteristics of Crack A and Crack B were analyzed, as shown in Figure 7 and Table 1.

3.4. Comparative Analysis of Different Detectors for Crack Detection

To demonstrate the superiority of the proposed method, a comparative analysis was conducted comparing the Otsu + LoG algorithm with three edge detectors—Roberts [43], Laplacian of Gaussian [25], and Sobel [43]—using the same set of concrete bridge images. First, a dataset comprising 115 crack-containing images and 312 crack-free images was constructed. Then, the four detection methods were evaluated based on the following metrics:
  • True Positive (TP): The edge detector correctly identifies cracks in images containing cracks.
  • True Negative (TN): The edge detector correctly detects no cracks in crack-free images.
  • False Negative (FN): The edge detector fails to detect cracks in images that actually contain cracks.
  • False Positive (FP): The edge detector incorrectly detects cracks in crack-free images.
Subsequently, each crack detection method was evaluated based on the following metrics: True Positive Rate (TPR), True Negative Rate (TNR), Accuracy (ACC), Positive Predictive Value (PPV), and Negative Predictive Value (NPV), which are defined as follows:
T P R = ( T P T P + F N )
T N R = ( T N T N + F P )
A C C = ( T P + T N T P + F N + T N + F P )
P P V = ( T P T P + F P )
N P V = ( T N T N + F N )
The four detection methods were tested on the constructed dataset, with the statistical results of different evaluation metrics for each method presented in Table 2.
As shown in Table 2, the proposed Otsu + LoG method achieves the highest TPR of 93%, followed by the LoG method. Meanwhile, the Otsu + LoG approach also demonstrates the best PPV performance. The quantitative results in Table 2 confirm the superiority of the proposed method.

4. Discussion

Comprehensive and precise Ground Control Points (GCPs) are crucial for achieving reliable and accurate results. The implementation of quadratic and binary quadratic equations for pixel coordinate geometric calibration has yielded significant error reductions. Figure 8 shows the precise extraction of GCPs.
Comparative image analyses show that the improved Otsu-based images exhibit orthophotograph-like characteristics, a conclusion further corroborated by Euler angle matrix observations. The successful implementation of hover mode during image acquisition significantly enhanced system stability, effectively mitigating adverse effects caused by lens jitter. This confirms that our UAV and camera system maintained stable operation throughout the entire testing process.

5. Conclusions

In this study, we developed an enhanced image processing method for concrete bridge crack detection that overcomes the limitations of conventional visual inspection techniques. By integrating UAV remote sensing with advanced image processing algorithms, the proposed approach significantly improves crack detection accuracy. The method enhances traditional Otsu thresholding through incorporation of the Laplacian of Gaussian (LoG) operator, enabling more effective differentiation between actual cracks and background noise.
Experimental validation using real-world bridge images demonstrates the method’s capability to accurately identify and quantify cracks through four key geometric parameters: centroid coordinates, crack length, surface area, and principal orientation. These quantitative metrics enable comprehensive damage characterization, thereby facilitating precise severity assessment and optimized maintenance scheduling.
The developed technique exhibits three notable advantages: (1) substantial reduction in false positive detections, (2) improved computational efficiency for field applications, and (3) reliable automated assessment of crack morphology. These advancements establish the method as a practical solution for structural health monitoring of concrete bridges.
The findings demonstrate that this integrated UAV image processing approach can potentially transform current bridge inspection paradigms, offering a cost-effective, accurate, and scalable alternative to manual inspection methods. Future research will leverage the crack features detected and extracted in this study to assess crack severity and its impact on bridge integrity. Concurrently, we will develop weather-resilient UAV-based inspection methods for complex meteorological conditions and extend applications to broader infrastructure systems (e.g., steel trusses and pavements).

Author Contributions

Resources, funding acquisition and data curation, Y.C.; conceptualization, software and writing—original draft preparation, H.L.; methodology and investigation, T.R.; validation, visualization and formal analysis, Z.C.; supervision, project administration and writing—review and editing, H.Z.; All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by Jilin Provincial Science and Technology Development Program, grant number YDZJ202503CGZH015.

Data Availability Statement

Data are contained within the article.

Acknowledgments

We would like to thank all the scholars in the references for their contributions to their respective research fields, as well as the open-source data provided by various data websites.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Liang, H.; Lee, S.C.; Seo, S. UAV-based low altitude remote sensing for concrete bridge multi-category damage automatic detection system. Drones 2023, 7, 386. [Google Scholar] [CrossRef]
  2. Ren, M.; Zhang, X.F.; Chen, X.; Zhou, B.; Feng, Z.Y. YOLOv5s-M: A deep learning network model for road pavement damage detection from urban street-view imagery. Int. J. Appl. Earth Obs. Geoinf. 2023, 120, 103335. [Google Scholar] [CrossRef]
  3. Kim, S.Y.; Mukhiddinov, M. Data anomaly detection for structural health monitoring based on a convolutional neural network. Sensors 2023, 23, 8525. [Google Scholar] [CrossRef] [PubMed]
  4. Cai, C.; Chen, S.; Liu, L. Detection of fatigue cracks for concrete structures by using carbon ink-based conductive skin and electrical resistance tomography. Sensors 2023, 23, 8382. [Google Scholar] [CrossRef]
  5. Munawar, H.S.; Ullah, F.; Heravi, A.; Thaheem, M.J.; Maqsoom, A. Inspecting buildings using drones and computer vision: A machine learning approach to detect cracks and damages. Drones 2022, 6, 5. [Google Scholar] [CrossRef]
  6. Wu, W.J.; Veljkovic, M.; Kolstein, H.; Pijpers, R.; Maljaars, J. Fatigue behaviour of root crack in stiffener-to-deck plate weld at crossbeam of orthotropic bridge decks. Eng. Struct. 2024, 306, 117710. [Google Scholar] [CrossRef]
  7. Zhang, N.; Alipour, A. A stochastic programming approach to enhance the resilience of infrastructure under weather-related risk. Comput.-Aided Civ. Infrastruct. Eng. 2022, 38, 411–432. [Google Scholar] [CrossRef]
  8. Li, J.; Yu, Z.; Wu, J.; Ding, Q.; Xu, W.; Huang, S. The application of heat-shrinkable fibers and internal curing aggregates in the field of crack resistance of high-strength marine structural mass concrete: A review and prospects. Polymers 2023, 15, 3884. [Google Scholar] [CrossRef]
  9. Filizadeh, R.; Hernandez, E.M.; Rosowsky, D.V. Risk-based framework for post-earthquake monitoring and evaluation of reinforced concrete bridges subject to multiple hazards. Reliab. Eng. Syst. Saf. 2024, 245, 109992. [Google Scholar] [CrossRef]
  10. Song, F.; Liu, B.; Yuan, G.X. Pixel-level crack identification for bridge concrete structures using unmanned aerial vehicle photography and deep learning. Struct. Control Health Monit. 2024, 2024, 1299095. [Google Scholar] [CrossRef]
  11. Chen, Z.W.; Shi, Y.; Chen, J.F.; Zhang, Y. Effect of cracks on the influence lines of a smart concrete girder bridge based on the element size–independent FE model. Struct. Control Health Monit. 2024, 2024, 9980733. [Google Scholar] [CrossRef]
  12. Rehman, S.K.U.; Ibrahim, Z.; Memon, S.A.; Jameel, M. Nondestructive test methods for concrete bridges: A review. Constr. Build. Mater. 2016, 107, 58–86. [Google Scholar] [CrossRef]
  13. Machorro-Lopez, J.M.; Valtierra-Rodriguez, M.; Amezquita-Sanchez, J.P.; Carrion-Viramontes, F.J.; Quintana-Rodriguez, J.A. A shannon entropy-based methodology to detect and locate cables loss in a cable-stayed bridge. Int. J. Appl. Mech. 2021, 13, 2150063. [Google Scholar] [CrossRef]
  14. Machorro-Lopez, J.M.; Valtierra-Rodriguez, M.; Perez-Quiroz, J.T.; Amezquita-Sanchez, J.P. Comparative analysis of fractals-homogeneity-entropy algorithms applied on a FEM bridge model to identify damage. Infrastructures 2025, 10, 36. [Google Scholar] [CrossRef]
  15. Xiao, F.; Mao, Y.X.; Tian, G.; Chen, G.S. Partial-model-based damage identification of long-span steel truss bridge based on stiffness separation method. Struct. Control Health Monit. 2024, 2024, 5530300. [Google Scholar] [CrossRef]
  16. Xiao, F.; Mao, Y.X.; Sun, H.M.; Chen, G.S.; Tian, G. Stiffness separation method for reducing calculation time of truss structure damage identification. Struct. Control Health Monit. 2024, 2024, 5171542. [Google Scholar] [CrossRef]
  17. Kong, X.; Cai, C.S.; Hu, J. The state-of-the-art on framework of vibration-based structural damage identification for decision making. Appl. Sci. 2017, 7, 497. [Google Scholar] [CrossRef]
  18. Nhamage, I.A.; Horas, C.S.; Dang, N.S.; Campos e Matos, J.A.; Poças Martins, J. Strategies for maximising the value of digital twins for bridge management and structural monitoring: A systematic review. Arch. Computat. Methods Eng. 2025, 1–32. [Google Scholar] [CrossRef]
  19. Zoubir, H.; Rguig, M.; Mohamed, E.A.; Saadane, R.; Chehri, A. Pixel-level concrete bridge crack detection using Convolutional Neural Networks, Gabor filters, and attention mechanisms. Eng. Struct. 2024, 314, 118343. [Google Scholar] [CrossRef]
  20. Li, H.; Chen, Y.; Liu, J.; Zhang, Z.; Zhu, H. Unmanned aircraft system applications in damage detection and service life prediction for bridges: A review. Remote Sens. 2022, 14, 4210. [Google Scholar] [CrossRef]
  21. Dorafshan, S.; Thomas, R.J.; Maguire, M. SDNET2018: An annotated image dataset for non-contact concrete crack detection using deep convolutional neural networks. Data Brief 2018, 21, 1664–1668. [Google Scholar] [CrossRef] [PubMed]
  22. Jeong, E.; Seo, J.; Wacker, J. Literature review and technical survey on bridge inspection using unmanned aerial vehicles. J. Perform. Constr. Facil. 2020, 34, 04020113. [Google Scholar] [CrossRef]
  23. Fan, C.C.; Ding, Y.L.; Liu, X.J.; Yang, K. A review of crack research in concrete structures based on data-driven and intelligent algorithms. Structures 2025, 75, 108800. [Google Scholar] [CrossRef]
  24. Cabaleiro, M.; Lindenbergh, R.; Gard, W.; Arias, P.; van de Kuilen, J.W. Algorithm for automatic detection and analysis of cracks in timber beams from LiDAR data. Constr. Build. Mater. 2017, 130, 41–53. [Google Scholar] [CrossRef]
  25. Lee, D.E.; Choi, Y.; Hong, G.; Maruthi, M.; Yi, C.Y.; Park, Y.J. Parametric image-based concrete defect assessment method. Case Stud. Constr. Mater. 2024, 20, e02962. [Google Scholar] [CrossRef]
  26. Dorafshan, S.; Thomas, R.J.; Maguire, M. Comparison of deep convolutional neural networks and edge detectors for image-based crack detection in concrete. Constr. Build. Mater. 2018, 186, 1031–1045. [Google Scholar] [CrossRef]
  27. Cha, Y.J.; Choi, W.; Büyüköztürk, O. Deep learning-based crack damage detection using convolutional neural networks. Comput. Civ. Infrastruct. Eng. 2017, 32, 361–378. [Google Scholar] [CrossRef]
  28. Dorafshan, S.; Thomas, R.; Coopmans, C.; Maguire, M. Deep learning neural networks for UASs-assisted structural inspections: Feasibility and application. In Proceedings of the 2018 International Conference on Unmanned Aircraft Systems (ICUAS), Dallas, TX, USA, 12–15 June 2018; pp. 874–882. [Google Scholar]
  29. Choudhary, G.; Dey, S. Crack detection in concrete surfaces using image processing, fuzzy logic, and neural networks. In Proceedings of the 2012 IEEE Fifth International Conference on Advanced Computational Intelligence (ICACI), Nanjing, China, 18–20 October 2012; pp. 404–411. [Google Scholar]
  30. Chai, C.Z.; Gao, Y.; Xiong, G.Y.; Liu, J.C.; Li, H.J. Domain knowledge-driven image captioning for bridge damage description generation. Automat. Constr. 2025, 174, 106116. [Google Scholar] [CrossRef]
  31. Jang, K.; Song, T.; Kim, D.; Kim, J.; Koo, B.; Nam, M.; Kwak, K.; Lee, J.; Chung, M. Analytical Method for Bridge Damage Using Deep Learning-Based Image Analysis Technology. Appl. Sci. 2023, 13, 11800. [Google Scholar] [CrossRef]
  32. Rahman, A.U.; Hoskere, V. Instance segmentation of reinforced concrete bridge point clouds with transformers trained exclusively on synthetic data. Automat. Constr. 2025, 173, 106067. [Google Scholar] [CrossRef]
  33. Dorafshan, S.; Thomas, R.J.; Maguire, M. Benchmarking Image Processing Algorithms for Unmanned Aerial System-Assisted Crack Detection in Concrete Structures. Infrastructures 2019, 4, 19. [Google Scholar] [CrossRef]
  34. Cha, Y.J.; Choi, W.; Suh, G.; Mahmoudkhani, S.; Buyukozturk, O. Autonomous Structural Visual Inspection Using Region-Based Deep Learning for Detecting Multiple Damage Types. Comput.-Aided Civ. Infrastruct. Eng. 2017, 33, 731–747. [Google Scholar] [CrossRef]
  35. Oh, D.; Jeong, S.; Bae, S.K.; Kim, B.; Cho, S. Training deep learning segmentation models using super-resolution crack images for detection of thin concrete cracks. J. Comput. Civ. Eng. 2025, 39, 04025035. [Google Scholar] [CrossRef]
  36. Mohan, A.; Poobal, S. Crack detection using image processing: A critical review and analysis. Alex. Eng. J. 2018, 57, 787–798. [Google Scholar] [CrossRef]
  37. Li, H.-Y.; Huang, C.-Y.; Wang, C.-Y. Measurement of Cracks in Concrete Bridges by Using Unmanned Aerial Vehicles and Image Registration. Drones 2023, 7, 342. [Google Scholar] [CrossRef]
  38. Woo, H.-J.; Hong, W.-H.; Oh, J.; Baek, S.-C. Defining Structural Cracks in Exterior Walls of Concrete Buildings Using an Unmanned Aerial Vehicle. Drones 2023, 7, 149. [Google Scholar] [CrossRef]
  39. Tian, Y.; Zhang, X.; Chen, H.; Wang, Y.; Wu, H. A Bridge Damage Visualization Technique Based on Image Processing Technology and the IFC Standard. Sustainability 2023, 15, 8769. [Google Scholar] [CrossRef]
  40. Khan, M.A.-M.; Kee, S.-H.; Pathan, A.-S.K.; Nahid, A.-A. Image Processing Techniques for Concrete Crack Detection: A Scientometrics Literature Review. Remote Sens. 2023, 15, 2400. [Google Scholar] [CrossRef]
  41. Sutton, M.A.; Hild, F. Recent advances and perspectives in digital image correlation. Exp. Mech. 2015, 55, 1–8. [Google Scholar] [CrossRef]
  42. Bhardwaj, M.; Khan, N.U.; Baghel, V. Fuzzy C-Means clustering based selective edge enhancement scheme for improved road crack detection. Eng. Appl. Artif. Intell. 2024, 136, 108955. [Google Scholar] [CrossRef]
  43. Hoang, N.D.; Nguyen, Q.L. Metaheuristic optimized edge detection for recognition of concrete wall cracks: A comparative study on the performances of roberts, prewitt, canny, and sobel algorithms. Adv. Civ. Eng. 2018, 2018, 7163580. [Google Scholar] [CrossRef]
Figure 1. Flow chart of the methodology. (a) Image preprocessing and initial edge detection workflow; (b) Concrete bridge crack damage assessment workflow.
Figure 1. Flow chart of the methodology. (a) Image preprocessing and initial edge detection workflow; (b) Concrete bridge crack damage assessment workflow.
Infrastructures 10 00161 g001
Figure 2. RGB image damage detection results using different thresholds. (a) Original RGB image; (b) Damage detection in a high threshold; (c) Damage detection in a low threshold.
Figure 2. RGB image damage detection results using different thresholds. (a) Original RGB image; (b) Damage detection in a high threshold; (c) Damage detection in a low threshold.
Infrastructures 10 00161 g002
Figure 3. RGB image damage detection results using different methods. (a) Original RGB image; (b) Damage detection by Otsu; (c) Damage detection by our method.
Figure 3. RGB image damage detection results using different methods. (a) Original RGB image; (b) Damage detection by Otsu; (c) Damage detection by our method.
Infrastructures 10 00161 g003
Figure 4. Crack length (L) calculation method: distance between two vertical lines in graph edge.
Figure 4. Crack length (L) calculation method: distance between two vertical lines in graph edge.
Infrastructures 10 00161 g004
Figure 5. Study bridge and inspection side surface.
Figure 5. Study bridge and inspection side surface.
Infrastructures 10 00161 g005
Figure 6. Damage detection results in three photos. (a) Origin images; (b) Grayscale images; (c) Smooth images; (d) Threshold images; (e) Contour images.
Figure 6. Damage detection results in three photos. (a) Origin images; (b) Grayscale images; (c) Smooth images; (d) Threshold images; (e) Contour images.
Infrastructures 10 00161 g006
Figure 7. Analysis images of cracks. (a) Crack A; (b) Crack B.
Figure 7. Analysis images of cracks. (a) Crack A; (b) Crack B.
Infrastructures 10 00161 g007
Figure 8. Comparison of effects of different threshold segmentation methods. (a) Gray-level histogram with threshold = 179; (b) Gray-level histogram with threshold = 105; (c) Segmentation result of Otsu algorithm; (d) Segmentation result of improved Otsu algorithm.
Figure 8. Comparison of effects of different threshold segmentation methods. (a) Gray-level histogram with threshold = 179; (b) Gray-level histogram with threshold = 105; (c) Segmentation result of Otsu algorithm; (d) Segmentation result of improved Otsu algorithm.
Infrastructures 10 00161 g008
Table 1. Geometric characteristics of cracks.
Table 1. Geometric characteristics of cracks.
CrackNumber of CracksCentroid (mm)Length (mm)Perimeter (mm)Area (mm2)Angle (°)
Crack A1(97, 72)66.12151.4396−3.47
Crack B1(89, 73)133.45305.14910−4.73
Table 2. Statistical results of crack detection by different methods.
Table 2. Statistical results of crack detection by different methods.
DetectorTPRTNRACCPPVNPV
Roberts0.450.960.820.790.83
Sobel0.690.970.890.890.89
LoG0.780.970.920.910.92
Otsu + LoG0.930.980.960.940.97
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Chen, Y.; Li, H.; Zhu, H.; Ren, T.; Cao, Z. Concrete Bridge Crack Detection Using Unmanned Aerial Vehicles and Image Segmentation. Infrastructures 2025, 10, 161. https://doi.org/10.3390/infrastructures10070161

AMA Style

Chen Y, Li H, Zhu H, Ren T, Cao Z. Concrete Bridge Crack Detection Using Unmanned Aerial Vehicles and Image Segmentation. Infrastructures. 2025; 10(7):161. https://doi.org/10.3390/infrastructures10070161

Chicago/Turabian Style

Chen, Yanli, Hongze Li, Hang Zhu, Tianlong Ren, and Zhe Cao. 2025. "Concrete Bridge Crack Detection Using Unmanned Aerial Vehicles and Image Segmentation" Infrastructures 10, no. 7: 161. https://doi.org/10.3390/infrastructures10070161

APA Style

Chen, Y., Li, H., Zhu, H., Ren, T., & Cao, Z. (2025). Concrete Bridge Crack Detection Using Unmanned Aerial Vehicles and Image Segmentation. Infrastructures, 10(7), 161. https://doi.org/10.3390/infrastructures10070161

Article Metrics

Back to TopTop