├── LICENSE
├── README.md
└── datasets
├── BJN260
├── gt
│ ├── IMG_20201025_174847.png
│ ├── IMG_20201025_180707.png
│ ├── IMG_20201116_222434.png
│ └── readme.md
├── img
│ ├── IMG_20201025_174847.png
│ ├── IMG_20201025_180707.png
│ ├── IMG_20201116_222434.png
│ └── readme.md
└── visualization
│ ├── IMG_20201025_174847.png
│ ├── IMG_20201025_180707.png
│ ├── IMG_20201116_222434.png
│ └── readme.md
├── Rain365
├── gt
│ ├── IMG_20200923_172845.png
│ ├── IMG_20200923_181049.png
│ ├── IMG_20200923_181358.png
│ └── readme.md
├── img
│ ├── IMG_20200923_172845.png
│ ├── IMG_20200923_181049.png
│ ├── IMG_20200923_181358.png
│ └── readme.md
└── visualization
│ ├── IMG_20200923_172845.png
│ ├── IMG_20200923_181049.png
│ ├── IMG_20200923_181358.png
│ └── readme.md
├── Sun520
├── gt
│ ├── IMG_20201021_113730.png
│ ├── IMG_20201025_155556.png
│ ├── IMG_20201025_171017.png
│ └── readme.md
├── img
│ ├── IMG_20201021_113730.png
│ ├── IMG_20201025_155556.png
│ ├── IMG_20201025_171017.png
│ ├── IMG_20201027_164832.png
│ └── readme.md
├── readme.md
└── visualization
│ ├── IMG_20201021_113730.png
│ ├── IMG_20201025_155556.png
│ ├── IMG_20201025_171017.png
│ └── readme.md
└── example
├── noise_in_cracks_00.png
├── noise_in_cracks_black_00.png
└── readme.md
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2023 kaili
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # CarNet_databases
2 | This project contains our three crack detection datasets,i.e., Sun520, Rain365, and BJN260.
3 | The datasets can be downloaded from [**aliyundrive**](https://www.aliyundrive.com/s/o2L3v5PCwZQ) with pass code: **3j6f**.
4 |
5 | # Overview
6 |
7 | Cracks as common pavement defects, provide a sign of potential road damage. Pixel-level pavement crack detection is of great importance for intelligent transportation. However, it is challenging since cracks usually manifest themselves in various characteristics, such as low contrast, poor continuity, extreme aspect ratio, multiple scales, etc. These crack characteristics may be attributed to some external environment, such as weather, light, captured viewpoint, etc. The figure below shows some visual examples of real cracks: (a) shadows on sunny days, (b) rainwater on rainy days, (c) uneven illuminations in night scenes, and (d) grain-like textures in the background images, respectively.
8 |
9 | 
10 |
11 | However, to the best of our knowledge, the existing pavement crack databases are usually captured on clear sunny days. The crack data for other scenarios, such as night and rain, are not available in this domain. Also, the open-source single database data size for sunny weather is small, e.g. it usually contains no more than 400 images.
12 |
13 | Therefore, we propose three new pavement crack databases, namely Sun520, Rain365, and BJN260, to facilitate related research in the community. We annotated cracks at the pixel level. We describe each database in detail in the following sections.
14 |
15 |
16 | # Sun520
17 |
18 | Sun520 consists of 520 crack images taken on sunny days. These pictures reflect the road conditions of the Zhongguancun campus of the University of Chinese Academy of Sciences. These images contain various background noises such as shadows, oil stains, lane markings, and curved lines of tiles. In addition, because the images were collected in the morning, afternoon and dusk, they have rich image brightness. Some visual examples are shown below, where the first column is the crack image, the second column is the ground truth, and the last column is the composite of the crack and ground truth image.
19 |
20 |
21 |
22 |  |
23 |  |
24 |  |
25 |
26 |
27 |  |
28 |  |
29 |  |
30 |
31 |
32 |  |
33 |  |
34 |  |
35 |
36 |
37 |
38 | # Rain365
39 |
40 | Rain365 contains 365 crack images taken after rain. These pictures mainly reflect the pavement condition of Zhongguancun South Third Street. Since it is difficult for the human eye to distinguish cracks from non-cracks in rainy night scenes, we only use post-rain images during daytime. Rain365 includes three kinds of backgrounds: full wet, half wet and half dry, and full dry. Among them, the first case is the majority. Some visual examples are shown below, where the first column is the crack image, the second column is the ground truth, and the last column is the composite of the crack and ground truth image.
41 |
42 |
43 |
44 |  |
45 |  |
46 |  |
47 |
48 |
49 |  |
50 |  |
51 |  |
52 |
53 |
54 |  |
55 |  |
56 |  |
57 |
58 |
59 |
60 | # BJN260
61 | BJN260 includes 260 crack images collected at night scene in Beijing. These pictures mainly reflect the pavement condition of the side road of West North Fourth Ring Road. Due to various light sources (e.g. street lamps, car lights, truck lights, etc) and different light intensities, pavement conditions at night are complex and changeable, which brings new challenges to pixel-level detection. Some visual examples are shown below, where the first column is the crack image, the second column is the ground truth, and the last column is the composition of the crack and ground truth image.
62 |
63 |
64 |
65 |  |
66 |  |
67 |  |
68 |
69 |
70 |  |
71 |  |
72 |  |
73 |
74 |
75 |  |
76 |  |
77 |  |
78 |
79 |
80 |
81 |
82 | # Citation
83 |
84 | ```
85 | @article{li2021fast,
86 | title={Fast and Accurate Road Crack Detection Based on Adaptive Cost-Sensitive Loss Function},
87 | author={Kai Li and Bo Wang and Yingjie Tian and Zhiquan Qi},
88 | journal={IEEE Transactions on Cybernetics},
89 | pages={1-12},
90 | year={2021},
91 | doi={10.1109/TCYB.2021.3103885}
92 | }
93 |
94 | @article{li2023fast,
95 | title={{Rethinking Lightweight Convolutional Neural Networks for Efficient and High-quality Pavement Crack Detection}},
96 | author={Kai Li, Jie Yang, Siwei Ma, Bo Wang, Shanshe Wang, Yingjie Tian, and Zhiquan Qi},
97 | journal="arXiv preprint arXiv:2109.05707",
98 | year={2023}
99 | }
100 | ```
101 |
--------------------------------------------------------------------------------
/datasets/BJN260/gt/IMG_20201025_174847.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/BJN260/gt/IMG_20201025_174847.png
--------------------------------------------------------------------------------
/datasets/BJN260/gt/IMG_20201025_180707.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/BJN260/gt/IMG_20201025_180707.png
--------------------------------------------------------------------------------
/datasets/BJN260/gt/IMG_20201116_222434.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/BJN260/gt/IMG_20201116_222434.png
--------------------------------------------------------------------------------
/datasets/BJN260/gt/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/datasets/BJN260/img/IMG_20201025_174847.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/BJN260/img/IMG_20201025_174847.png
--------------------------------------------------------------------------------
/datasets/BJN260/img/IMG_20201025_180707.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/BJN260/img/IMG_20201025_180707.png
--------------------------------------------------------------------------------
/datasets/BJN260/img/IMG_20201116_222434.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/BJN260/img/IMG_20201116_222434.png
--------------------------------------------------------------------------------
/datasets/BJN260/img/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/datasets/BJN260/visualization/IMG_20201025_174847.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/BJN260/visualization/IMG_20201025_174847.png
--------------------------------------------------------------------------------
/datasets/BJN260/visualization/IMG_20201025_180707.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/BJN260/visualization/IMG_20201025_180707.png
--------------------------------------------------------------------------------
/datasets/BJN260/visualization/IMG_20201116_222434.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/BJN260/visualization/IMG_20201116_222434.png
--------------------------------------------------------------------------------
/datasets/BJN260/visualization/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/datasets/Rain365/gt/IMG_20200923_172845.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Rain365/gt/IMG_20200923_172845.png
--------------------------------------------------------------------------------
/datasets/Rain365/gt/IMG_20200923_181049.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Rain365/gt/IMG_20200923_181049.png
--------------------------------------------------------------------------------
/datasets/Rain365/gt/IMG_20200923_181358.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Rain365/gt/IMG_20200923_181358.png
--------------------------------------------------------------------------------
/datasets/Rain365/gt/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/datasets/Rain365/img/IMG_20200923_172845.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Rain365/img/IMG_20200923_172845.png
--------------------------------------------------------------------------------
/datasets/Rain365/img/IMG_20200923_181049.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Rain365/img/IMG_20200923_181049.png
--------------------------------------------------------------------------------
/datasets/Rain365/img/IMG_20200923_181358.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Rain365/img/IMG_20200923_181358.png
--------------------------------------------------------------------------------
/datasets/Rain365/img/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/datasets/Rain365/visualization/IMG_20200923_172845.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Rain365/visualization/IMG_20200923_172845.png
--------------------------------------------------------------------------------
/datasets/Rain365/visualization/IMG_20200923_181049.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Rain365/visualization/IMG_20200923_181049.png
--------------------------------------------------------------------------------
/datasets/Rain365/visualization/IMG_20200923_181358.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Rain365/visualization/IMG_20200923_181358.png
--------------------------------------------------------------------------------
/datasets/Rain365/visualization/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/datasets/Sun520/gt/IMG_20201021_113730.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Sun520/gt/IMG_20201021_113730.png
--------------------------------------------------------------------------------
/datasets/Sun520/gt/IMG_20201025_155556.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Sun520/gt/IMG_20201025_155556.png
--------------------------------------------------------------------------------
/datasets/Sun520/gt/IMG_20201025_171017.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Sun520/gt/IMG_20201025_171017.png
--------------------------------------------------------------------------------
/datasets/Sun520/gt/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/datasets/Sun520/img/IMG_20201021_113730.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Sun520/img/IMG_20201021_113730.png
--------------------------------------------------------------------------------
/datasets/Sun520/img/IMG_20201025_155556.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Sun520/img/IMG_20201025_155556.png
--------------------------------------------------------------------------------
/datasets/Sun520/img/IMG_20201025_171017.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Sun520/img/IMG_20201025_171017.png
--------------------------------------------------------------------------------
/datasets/Sun520/img/IMG_20201027_164832.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Sun520/img/IMG_20201027_164832.png
--------------------------------------------------------------------------------
/datasets/Sun520/img/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/datasets/Sun520/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/datasets/Sun520/visualization/IMG_20201021_113730.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Sun520/visualization/IMG_20201021_113730.png
--------------------------------------------------------------------------------
/datasets/Sun520/visualization/IMG_20201025_155556.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Sun520/visualization/IMG_20201025_155556.png
--------------------------------------------------------------------------------
/datasets/Sun520/visualization/IMG_20201025_171017.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/Sun520/visualization/IMG_20201025_171017.png
--------------------------------------------------------------------------------
/datasets/Sun520/visualization/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/datasets/example/noise_in_cracks_00.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/example/noise_in_cracks_00.png
--------------------------------------------------------------------------------
/datasets/example/noise_in_cracks_black_00.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shiyanrubing/CarNet_databases/58e2b29992cc70cb0c4173a60b6ed2bde3c61c59/datasets/example/noise_in_cracks_black_00.png
--------------------------------------------------------------------------------
/datasets/example/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------