Datasets:
YAML Metadata Warning:The task_categories "3d-point-cloud-classification" is not in the official list: text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, feature-extraction, text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, audio-text-to-text, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-ranking, text-retrieval, time-series-forecasting, text-to-video, image-text-to-text, image-text-to-image, image-text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, image-feature-extraction, video-text-to-text, keypoint-detection, visual-document-retrieval, any-to-any, video-to-video, other
π² TreeScapes-3D: A Multimodal Dataset for Forest and Plant Scene Understanding
Welcome to the TreeScapes-3D dataset repository! This is a high-quality, multimodal 3D vision dataset specifically designed for complex natural plant environments (such as agriculture, forestry robotics navigation, and plant phenotyping). We provide exceptionally rich, perfectly spatially aligned annotations for every frame in the scene.
πΈ Dataset Visualization
We have rendered extremely rich multimodal data for every viewpoint in the scene. Below is a real sample slice from the tree_001 scene:
Figure: RGB, Depth map, Disparity map, World Normal map, Instance Segmentation, and the corresponding 3D Point Cloud from the exact same viewpoint.
π Data Modalities
As shown in the figure above, every frame in the dataset perfectly includes the following 6 fully aligned data modalities:
- π· RGB
- Showcases realistic lighting effects and plant textures, suitable for general object detection and image segmentation.
- π Depth (m)
- High-precision absolute depth information, displayed as a heatmap (brighter colors indicate greater distance). Ideal for monocular/stereo depth estimation tasks.
- ποΈ Disparity (px)
- Disparity information corresponding to binocular stereo vision, providing perfect Ground Truth for stereo matching algorithms.
- π World Normal [R=X, G=Y, B=Z]
- Describes the 3D surface orientation of plant leaves and branches. This is a crucial feature for plant phenotyping and 3D reconstruction.
- π§© Instance Segmentation
each object = distinct colour: Every single leaf and branch is assigned an independent and unique ID and color. This greatly advances research in instance segmentation of dense leaves with severe occlusions.
- βοΈ Point Cloud (.ply)
- High-precision point cloud data with real (X, Y, Z) coordinates (e.g., 30,000 pts per view). Ready to drag and rotate, suitable for 3D object detection and point cloud semantic segmentation.
π Dataset Structure
The structure of the downloaded dataset is as follows:
TreeScapes-3D/
βββ train/
β βββ tree_001/
β β βββ left_rgb/
β β βββ left_depth/
β β βββ left_disparity/
β β βββ left_normal/
β β βββ left_instance_seg/
β β βββ point_clouds/ <-- contains .ply files
β βββ ...
βββ val/
βββ test/
π» Quick Start
You can use the datasets library to quickly download and load this dataset:
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("your_username/TreeScapes-3D")
# Check the first sample in the training set
sample = dataset['train'][0]
print(sample.keys()) # ['rgb', 'depth', 'normal', 'instance_seg', 'point_cloud_path']
# Display the RGB image
sample['rgb'].show()
π License & Citation
This project is open-sourced under the CC-BY 4.0 license. If you use this dataset in your research or project, please cite our work.
π‘ Tip: If you have any questions, feel free to open a Discussion in the Community tab!
- Downloads last month
- -