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

metafarmers/visual-servo-manipulation Private

[참조 MVP] 비주얼 서보 매니퓰레이션 — 선택한 작업대상의 위치 오차를 로봇팔 정렬 명령으로 변환하는 참조 MVP입니다.

https://git.agrithing.ai/metafarmers/visual-servo-manipulation.git
4 commits
1 items · feat/concrete-mvp-v2
·/ contracts/component.interface.json
json · 735 B · 5b241a3 Download
{  "$schema": "https://json-schema.org/draft/2020-12/schema",  "title": "비주얼 서보 매니퓰레이션 reference interface",  "type": "object",  "required": [    "component",    "accepted",    "status",    "target",    "targetId",    "stepMm",    "residualMm",    "converged"  ],  "properties": {    "component": {      "const": "metafarmers/visual-servo-manipulation"    },    "accepted": {      "type": "boolean"    },    "status": {      "type": "string"    },    "target": {      "const": "acu"    },    "targetId": {      "type": "string"    },    "stepMm": {      "type": "array"    },    "residualMm": {      "type": "number"    },    "converged": {      "type": "boolean"    }  }}