A-SW Hub / Repositories
Local Gitea · READ ONLY
← 저장소 Repositories
REPOSITORY

jbnu/3d-environment-perception Private

[참조 MVP] 3D 주행환경 인지 A-SW — 3차원 점군을 격자 군집화해 장애물 위치와 경계 상자를 생성합니다.

https://git.agrithing.ai/jbnu/3d-environment-perception.git
8 commits
13 items · feature/perception-confidence-audit
·/ run.py
python · 352 B · 6ce1446 Download
from __future__ import annotationsimport jsonimport sysfrom asw_component import executeif __name__ == "__main__":    path = sys.argv[1] if len(sys.argv) > 1 else None    with open(path, encoding="utf-8") if path else sys.stdin as source:        payload = json.load(source)    print(json.dumps(execute(payload), ensure_ascii=False, indent=2))