Anonymous-ACMMM-2025-Submission/Anonymous_ACMMM_2025_Submission
๐๏ธ Anonymous_ACMMM_2025_Submission Dataset This dataset is prepared for the Anonymous ACMMM 2025 submission, containing multi-view event-based data designed for dynamic 3D scene reconstruction tasks. ๐ Dataset Structure Each subfolder corresponds to a distinct synthetic or real-world scene, such as: lego_6_views/ capsule_6_views/ garage_6_views/ Restroom_6_views/ Cubes_6_views/ Hinge_6_views/ MC-Toy_6_views/ Rubikโs-Cube_6_views/ Each scene folder contains 6โฆ See the full description on the dataset page: https://huggingface.co/datasets/Anonymous-ACMMM-2025-Submission/Anonymous_ACMMM_2025_Submission.
๐๏ธ AnonymousACMMM2025_Submission Dataset
This dataset is prepared for the Anonymous ACMMM 2025 submission, containing multi-view event-based data designed for dynamic 3D scene reconstruction tasks.
๐ Dataset Structure
Each subfolder corresponds to a distinct synthetic or real-world scene, such as:
lego_6_views/capsule_6_views/garage_6_views/Restroom_6_views/Cubes_6_views/Hinge_6_views/MC-Toy_6_views/Rubikโs-Cube_6_views/
Each scene folder contains 6 views indexed from 1 to 6, and follows this structure:
scene_name_6_views/
โโโ 1/
โ โโโ blurry_images/ # Blurry RGB reference frames (e.g., 0000.png ~ 0039.png)
โ โโโ events/ # Event streams in various formats
โ โโโ train/ # Additional files for training (if any)
โโโ 2/
โโโ ...
โโโ points3d.ply # Global sparse point cloud
โโโ transforms_train.json # Training camera intrinsics/extrinsics
โโโ transforms_test.json # Test camera parameters
โโโ transforms_train_blurry.json # Camera poses for blurry image supervision
โโโ scene.blend # Optional Blender scene file๐ฆ Event Data Format
Each sub-view (1/ ~ 6/) contains the following files under events/:
event.txt: ASCII-format event stream (timestamp, x, y, polarity)event.h5: Efficient HDF5 version of the event streamevent.aedat4: Raw event data in AEDAT4 format (from DAVIS cameras or simulation)
๐จ RGB Image Data
blurry_images/: Blurry supervision images, typically aligned with camera poses intransforms_train_blurry.json.
๐ง Applications
This dataset can be used for research in the following areas:
- Event-based 3D Gaussian Splatting
- Dynamic scene reconstruction
- Novel view synthesis from asynchronous data
- Event-guided video or geometry generation
๐ Loading Examples
Loading `event.txt` (example in Python):
with open("event.txt") as f:
events = [line.strip().split() for line in f if not line.startswith("#")]Loading `event.h5`:
import h5py
with h5py.File("event.h5", "r") as f:
timestamps = f["events"]["t"][:]
xs = f["events"]["x"][:]
ys = f["events"]["y"][:]
polarities = f["events"]["p"][:]Loading camera poses:
import json
with open("transforms_train.json") as f:
cam_info = json.load(f)๐ License
This dataset is released for academic research and peer review only. Redistribution or commercial use is not permitted during the review phase. Please contact the authors for usage after publication.
