8 lines
262 B
Python
8 lines
262 B
Python
"""VR180 Streaming Matting - True streaming implementation for constant memory usage"""
|
|
|
|
__version__ = "0.1.0"
|
|
|
|
from .streaming_processor import VR180StreamingProcessor
|
|
from .config import StreamingConfig
|
|
|
|
__all__ = ["VR180StreamingProcessor", "StreamingConfig"] |