CoolFace
Datasetpublic

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.

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes486downloads
Dataset Card

๐Ÿ—‚๏ธ 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 stream
  • โ€”event.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 in transforms_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):

python
with open("event.txt") as f:
    events = [line.strip().split() for line in f if not line.startswith("#")]

Loading `event.h5`:

python
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:

python
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.