b24644f16e
Add the full demo runtime stack for single-person scoliosis inference, including input adapters, silhouette preprocessing, temporal windowing, ScoNet wrapper, result publishing, and click-based CLI orchestration. This commit captures the executable pipeline behavior independently from tests and planning artifacts for clearer review and rollback.
8 lines
103 B
Python
8 lines
103 B
Python
from __future__ import annotations
|
|
|
|
from .pipeline import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|