CoolFace
Datasetpublic

Felixdu11/tracked_CIRS_simulated

Tracked CIRS simulated CIRS phantom RF acquisition with a timestamped probe-tracking stream. This repository contains both the original raw source files and the converted OpenH-RF/ZEA dataset. Files Raw source data: raw/cirs_imaging.hdf5: original imaging HDF5 source. raw/cirs_tracking.ts: original timestamped probe tracking stream. OpenH-RF/ZEA converted data: zea/cirs_imaging_zea.hdf5: RF data, scan metadata, and probe pose metadata. zea/config.yaml:… See the full description on the dataset page: https://huggingface.co/datasets/Felixdu11/tracked_CIRS_simulated.

sourceHugging Faceapache-2.0updated 12d agoView on Hugging Face
0likes27downloads
Dataset Card

Tracked CIRS simulated

CIRS phantom RF acquisition with a timestamped probe-tracking stream.

This repository contains both the original raw source files and the converted OpenH-RF/ZEA dataset.

Files

Raw source data:

  • —raw/cirs_imaging.hdf5: original imaging HDF5 source.
  • —raw/cirs_tracking.ts: original timestamped probe tracking stream.

OpenH-RF/ZEA converted data:

  • —zea/cirs_imaging_zea.hdf5: RF data, scan metadata, and probe pose metadata.
  • —zea/config.yaml: reconstruction pipeline configuration.

Example usage

python
import zea

path = "hf://Felixdu11/tracked_CIRS_simulated/zea/cirs_imaging_zea.hdf5"
config = zea.Config.from_path("hf://Felixdu11/tracked_CIRS_simulated/zea/config.yaml")

with zea.File(path) as f:
    print(f.data.raw_data.shape)
    print(f.metadata().probe_pose.translation.shape)