AgriField3D: A Curated 3D Point Cloud Dataset of Field-Grown Plants From A Maize Diversity Panel
Dataset Structure
The dataset consists of two compressed .zip files, which contain the 3D point cloud data:
AgriField3D/
├── FielGrwon_ZeaMays_RawPCD_100k.zip
│ └── Contains 1045 high-resolution (100K points) `.ply` files representing full plant point clouds.
│ ├── 0001.ply
│ ├── 0002.ply
│ ├── ...
│ └── 1045.ply
├── FielGrwon_ZeaMays_SegmentedPCD_100k.zip
│ └── Contains 520 high-resolution (100K points) `.ply` files of segmented plant models.
│ ├── 0001.ply
│ ├── 0002.ply
│ ├── ...
│ └── 0520.ply
Contents of the .zip Files
FielGrwon_ZeaMays_RawPCD_100k.zip:- Contains 1045
.plyfiles. Each file is a high-resolution 3D point cloud representing an entire maize plant.
- Contains 1045
FielGrwon_ZeaMays_SegmentedPCD_100k.zip:- Contains 520
.plyfiles. Each file represents a segmented model focusing on specific plant parts.
- Contains 520
How to Access
Download the
.zipfiles:Extract the files:
unzip FielGrwon_ZeaMays_RawPCD_100k.zip unzip FielGrwon_ZeaMays_SegmentedPCD_100k.zipUse the extracted
.plyfiles in tools like:- MeshLab
- CloudCompare
- Python libraries such as
open3dortrimesh.
Example Code to Visualize the .ply Files in Python
import open3d as o3d
# Load and visualize a PLY file from the dataset
pcd = o3d.io.read_point_cloud("FielGrwon_ZeaMays_RawPCD_100k/0001.ply")
o3d.visualization.draw_geometries([pcd])