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

unist/crop-structure-mapping Private

[참조 MVP] 작물구조 3D 매핑 — 작물과 장애물 관측을 작업공간 지도로 집계하는 위탁연구 참조 MVP입니다.

https://git.agrithing.ai/unist/crop-structure-mapping.git
4 commits
1 items · feat/concrete-mvp-v2
·/ contracts/component.interface.json
json · 732 B · 35e180d Download
{  "$schema": "https://json-schema.org/draft/2020-12/schema",  "title": "작물구조 3D 매핑 reference interface",  "type": "object",  "required": [    "component",    "accepted",    "status",    "target",    "mapId",    "counts",    "bounds",    "obstacles"  ],  "properties": {    "component": {      "const": "unist/crop-structure-mapping"    },    "accepted": {      "type": "boolean"    },    "status": {      "type": "string"    },    "target": {      "const": "vpu"    },    "mapId": {      "type": "string"    },    "counts": {      "type": "object"    },    "bounds": {      "type": [        "object",        "null"      ]    },    "obstacles": {      "type": "array"    }  }}