Update README.md
Browse files
README.md
CHANGED
@@ -7,44 +7,23 @@ The dataset consists of two compressed `.zip` files, which contain the 3D point
|
|
7 |
|
8 |
```
|
9 |
AgriField3D/
|
10 |
-
├──
|
11 |
-
│
|
12 |
-
│
|
13 |
-
│
|
14 |
-
|
15 |
-
|
16 |
-
├──
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
├──
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
│ └── 1045.ply
|
28 |
-
├── FielGrwon_ZeaMays_SegmentedPCD_100k.zip
|
29 |
-
│ └── Contains 520 high-resolution (100K points) `.ply` files of segmented plant models.
|
30 |
-
│ ├── 0001.ply
|
31 |
-
│ ├── 0002.ply
|
32 |
-
│ ├── ...
|
33 |
-
│ └── 0520.ply
|
34 |
-
├── FielGrwon_ZeaMays_SegmentedPCD_50k.zip
|
35 |
-
│ └── Contains 520 high-resolution (50K points) `.ply` files of segmented plant models.
|
36 |
-
│ ├── 0001.ply
|
37 |
-
│ ├── 0002.ply
|
38 |
-
│ ├── ...
|
39 |
-
│ └── 0520.ply
|
40 |
-
├── FielGrwon_ZeaMays_SegmentedPCD_10k.zip
|
41 |
-
│ └── Contains 520 high-resolution (10K points) `.ply` files of segmented plant models.
|
42 |
-
│ ├── 0001.ply
|
43 |
-
│ ├── 0002.ply
|
44 |
-
│ ├── ...
|
45 |
-
│ └── 0520.ply
|
46 |
-
├── Metadata.xlsx
|
47 |
-
├── PointCloudDownsampler.py
|
48 |
```
|
49 |
|
50 |
### Contents of the `.zip` Files
|
|
|
7 |
|
8 |
```
|
9 |
AgriField3D/
|
10 |
+
├── agrifield3d/ # Main Python package directory
|
11 |
+
│ ├── __init__.py # Initialize the Python package
|
12 |
+
│ ├── dataset.py # Python file to define dataset access functions
|
13 |
+
│ └── utils.py # Helper functions (optional)
|
14 |
+
├── setup.py # Package setup configuration
|
15 |
+
├── README.md # Package description
|
16 |
+
├── requirements.txt # Dependencies
|
17 |
+
├── MANIFEST.in # Non-Python files to include in the package
|
18 |
+
├── Metadata.xlsx # Metadata for your dataset
|
19 |
+
├── PointCloudDownsampler.py # Python script for downsampling
|
20 |
+
└── datasets/ # Directory for zipped datasets
|
21 |
+
├── FielGrwon_ZeaMays_RawPCD_100k.zip
|
22 |
+
├── FielGrwon_ZeaMays_RawPCD_50k.zip
|
23 |
+
├── FielGrwon_ZeaMays_RawPCD_10k.zip
|
24 |
+
├── FielGrwon_ZeaMays_SegmentedPCD_100k.zip
|
25 |
+
├── FielGrwon_ZeaMays_SegmentedPCD_50k.zip
|
26 |
+
├── FielGrwon_ZeaMays_SegmentedPCD_10k.zip
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
```
|
28 |
|
29 |
### Contents of the `.zip` Files
|