AIOmarRehan commited on
Commit
2407b51
·
verified ·
1 Parent(s): f644f8e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +114 -35
README.md CHANGED
@@ -1,35 +1,114 @@
1
- ---
2
- license: cc-by-4.0
3
- dataset_info:
4
- features:
5
- - name: image
6
- dtype: image
7
- - name: label
8
- dtype:
9
- class_label:
10
- names:
11
- '0': test
12
- '1': train
13
- '2': valid
14
- splits:
15
- - name: train
16
- num_bytes: 137284657
17
- num_examples: 837
18
- - name: validation
19
- num_bytes: 17066298
20
- num_examples: 104
21
- - name: test
22
- num_bytes: 17015125
23
- num_examples: 103
24
- download_size: 171383973
25
- dataset_size: 171366080
26
- configs:
27
- - config_name: default
28
- data_files:
29
- - split: train
30
- path: data/train-*
31
- - split: validation
32
- path: data/validation-*
33
- - split: test
34
- path: data/test-*
35
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ dataset_info:
4
+ features:
5
+ - name: image
6
+ dtype: image
7
+ - name: label
8
+ dtype:
9
+ class_label:
10
+ names:
11
+ '0': test
12
+ '1': train
13
+ '2': valid
14
+ splits:
15
+ - name: train
16
+ num_bytes: 137284657
17
+ num_examples: 837
18
+ - name: validation
19
+ num_bytes: 17066298
20
+ num_examples: 104
21
+ - name: test
22
+ num_bytes: 17015125
23
+ num_examples: 103
24
+ download_size: 171383973
25
+ dataset_size: 171366080
26
+ configs:
27
+ - config_name: default
28
+ data_files:
29
+ - split: train
30
+ path: data/train-*
31
+ - split: validation
32
+ path: data/validation-*
33
+ - split: test
34
+ path: data/test-*
35
+ ---
36
+
37
+ # Dataset Card: SIVED (SAR Image Vehicle Detection)
38
+
39
+ ## Important Notice
40
+
41
+ **This dataset was NOT created by the uploader.** It was originally curated and published by the researchers listed below. It is shared here on Kaggle and Hugging Face solely for accessibility and ease of use in machine learning pipelines. All credit belongs to the original authors.
42
+
43
+ ## Authors
44
+
45
+ **Xin Lin, Bo Zhang, Fan Wu, Chao Wang, Yali Yang, and Huiqin Chen**
46
+
47
+ CAESAR-Radi Research Group
48
+
49
+ ## Original Sources
50
+
51
+ | Source | Link |
52
+ |--------|------|
53
+ | GitHub Repository | https://github.com/CAESAR-Radi/SIVED |
54
+ | Paper (Remote Sensing, MDPI) | https://www.mdpi.com/2072-4292/15/11/2825 |
55
+ | Google Drive (original download) | https://drive.google.com/drive/folders/1ntqNSMQqMwu8RE4uK2z632cMQEi4yid6 |
56
+
57
+ ## Dataset Description
58
+
59
+ SIVED is a SAR (Synthetic Aperture Radar) image dataset designed for vehicle detection using rotatable bounding box annotations. It aggregates high-resolution SAR imagery from three distinct radar sources across multiple frequency bands.
60
+
61
+ | Property | Value |
62
+ |----------|-------|
63
+ | Total Images | 1,044 (512 x 512 px, grayscale) |
64
+ | Total Annotations | 12,013 oriented bounding boxes |
65
+ | Classes | 1 (Vehicle) |
66
+ | Annotation Format | DOTA (8-point rotated bounding box) |
67
+ | Splits | Train: 837 / Valid: 104 / Test: 103 |
68
+
69
+ ### Radar Sources
70
+
71
+ | Source | Organization | Band | Polarization | Resolution |
72
+ |--------|-------------|------|--------------|------------|
73
+ | FARAD | Sandia National Laboratory | Ka/X | VV/HH | 0.1m x 0.1m |
74
+ | MiniSAR | Sandia National Laboratory | Ku | - | 0.1m x 0.1m |
75
+ | MSTAR | U.S. Air Force | X | HH | 0.3m x 0.3m |
76
+
77
+ ### Annotation Format
78
+
79
+ Each annotation provides eight coordinates defining the four corners of an oriented bounding box, a class label, and a difficulty flag:
80
+
81
+ ```
82
+ x1 y1 x2 y2 x3 y3 x4 y4 class_name difficulty
83
+ ```
84
+
85
+ - `difficulty=0`: Easy (clearly visible vehicles)
86
+ - `difficulty=1`: Hard (partially occluded, low contrast, or very small)
87
+
88
+ ## License
89
+
90
+ The original SIVED repository on GitHub does not specify an explicit license file. The accompanying paper was published in *Remote Sensing* (MDPI), an open-access journal that publishes under the **Creative Commons Attribution (CC BY 4.0)** license, which permits sharing and adaptation with appropriate credit.
91
+
92
+ Users of this dataset should cite the original paper and comply with any terms set by the original authors. If there is any concern regarding redistribution rights, please refer to the original repository or contact the authors directly.
93
+
94
+ ## Citation (Required)
95
+
96
+ If you use this dataset in any capacity, please cite the original work:
97
+
98
+ ```bibtex
99
+ @Article{rs15112825,
100
+ author = {Lin, Xin and Zhang, Bo and Wu, Fan and Wang, Chao and Yang, Yali and Chen, Huiqin},
101
+ title = {SIVED: A SAR Image Dataset for Vehicle Detection Based on Rotatable Bounding Box},
102
+ journal = {Remote Sensing},
103
+ volume = {15},
104
+ number = {11},
105
+ pages = {2825},
106
+ year = {2023},
107
+ doi = {10.3390/rs15112825},
108
+ url = {https://www.mdpi.com/2072-4292/15/11/2825}
109
+ }
110
+ ```
111
+
112
+ ## Related Work
113
+
114
+ - Scientific Reports (Nature, 2025): https://www.nature.com/articles/s41598-025-28755-3