Standalone Open3D viewer that listens on a TCP/Unix socket and renders NDJSON point-cloud streams from any producer. Decoupled server/protocol/store layers (no Open3D dependency, testable headless) plus a lazy Open3D render loop. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
7 lines
97 B
Python
7 lines
97 B
Python
"""Allow `python -m cloudview`."""
|
|
|
|
from .app import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|