unique-chan commited on
Commit
e6e19c0
·
verified ·
1 Parent(s): 44dbb9f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -3
README.md CHANGED
@@ -1,3 +1,39 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # AMOD: A Large-scale Benchmark for RGB-T Multi-view Aerial Military Object Detection
6
+
7
+ - Official website: https://unique-chan.github.io/AMOD-Project/
8
+ - Dataset overview:
9
+ ![AMOD](https://unique-chan.github.io/AMOD-Project/static/images/Homepage-fig1.jpg)
10
+ - (a) Sample images with annotations from our AMOD dataset.
11
+ - (b) Comparison of the AMOD dataset with existing RGB-T aerial object detection benchmarks.
12
+
13
+ - Dataset structure:
14
+ - After download this repository, please unzip `AMOD-RGB.zip` and `AMOD-T.zip`.
15
+ ~~~
16
+ |—— 📁 AMOD
17
+ |—— 📁 AMOD-RGB
18
+ |—— 📁 train
19
+ |—— 📁 train_imgs
20
+ |—— 📁 0000 // scenario number
21
+ |—— 🖼️ EO_0000_0.png // image at look angle 0 for scenario "0000"
22
+ |—— 🖼️ EO_0000_10.png
23
+ ...
24
+ |—— 🖼️ EO_0000_50.png
25
+ |—— ...
26
+ |—— 📁 train_labels
27
+ |—— 📄 ANNOTATION-EO_0000_0.csv // annotation file for "EO_0000_0.png"
28
+ |—— 📄 ANNOTATION-EO_0000_10.csv
29
+ ...
30
+ |—— 📁 test
31
+ |—— 📁 test_imgs
32
+ |—— 📁 test_labels
33
+ |—— 📄 train.txt // scene number list for train split
34
+ |—— 📄 val.txt // scene number list for validation split
35
+ |—— 📄 test.txt // scene number list for test split
36
+ |—— 📁 AMOD-T
37
+ ~~~
38
+ - Note that RGB and thermal modalities are perfectly aligned, with identical image counts, instance counts, and bounding box annotations in our benchmark.
39
+ - To facilitate modality-specific usage (e.g., RGB-only or thermal-only research), RGB and thermal (T) data are stored in separate directories, each containing identical annotations. Consequently, annotations from either EO or IR can be used interchangeably for the same scene.