new_share_long_live_100 / core /reference.py
zzhang2816's picture
Upload folder using huggingface_hub
d615d4b verified
Raw
History Blame Contribute Delete
560 Bytes
"""Reference frame retrieval & visibility — thin re-export of LiveWorld utilities.
We intentionally re-use the original implementations so the keyframe selection
behaviour is identical to LiveWorld; only the *inputs* (state.points_world etc.)
come from our progressive-coloring pipeline.
"""
from __future__ import annotations
from liveworld.pipelines.pipeline_unified_backbone import (
retrieve_reference_frames,
_update_frame_visibility as update_frame_visibility,
)
__all__ = [
"retrieve_reference_frames",
"update_frame_visibility",
]