Datasets:

ArXiv:
License:
BGLab commited on
Commit
0109cf0
·
verified ·
1 Parent(s): 739c019

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -38
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
- ├── FielGrwon_ZeaMays_RawPCD_100k.zip
11
- └── Contains 1045 high-resolution (100K points) `.ply` files representing full plant point clouds.
12
- ├── 0001.ply
13
- ├── 0002.ply
14
- ├── ...
15
- │ └── 1045.ply
16
- ├── FielGrwon_ZeaMays_RawPCD_50k.zip
17
- │ └── Contains 1045 high-resolution (50K points) `.ply` files representing full plant point clouds.
18
- ├── 0001.ply
19
- ├── 0002.ply
20
- │ ├── ...
21
- │ └── 1045.ply
22
- ├── FielGrwon_ZeaMays_RawPCD_10k.zip
23
- │ └── Contains 1045 high-resolution (10K points) `.ply` files representing full plant point clouds.
24
- ├── 0001.ply
25
- ├── 0002.ply
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