poker_updateDetector
Update detector parameters including origin position, grid vectors, transformation names, and path trace visibility for enhanced detection accuracy.
Instructions
既存検出器のパラメータを更新します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| grid | No | 新しいエッジベクトルと分割数の組の配列 | |
| name | Yes | 更新する検出器の名前 | |
| origin | No | 新しい検出器の基準位置(x y z形式) | |
| show_path_trace | No | 透過線の経路トレースをサマリーに出力するか | |
| transform | No | 新しい変換名 |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"grid": {
"description": "新しいエッジベクトルと分割数の組の配列",
"items": {
"additionalProperties": false,
"properties": {
"edge": {
"description": "エッジベクトル(x y z形式)",
"pattern": "^-?\\d+(\\.\\d+)?\\s+-?\\d+(\\.\\d+)?\\s+-?\\d+(\\.\\d+)?$",
"type": "string"
},
"number": {
"description": "分割数",
"maximum": 10000,
"minimum": 1,
"type": "integer"
}
},
"required": [
"edge",
"number"
],
"type": "object"
},
"maxItems": 3,
"minItems": 0,
"type": "array"
},
"name": {
"description": "更新する検出器の名前",
"type": "string"
},
"origin": {
"description": "新しい検出器の基準位置(x y z形式)",
"pattern": "^-?\\d+(\\.\\d+)?\\s+-?\\d+(\\.\\d+)?\\s+-?\\d+(\\.\\d+)?$",
"type": "string"
},
"show_path_trace": {
"description": "透過線の経路トレースをサマリーに出力するか",
"type": "boolean"
},
"transform": {
"description": "新しい変換名",
"maxLength": 50,
"pattern": "^[a-zA-Z0-9_]+$",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}