|
| 1 | +{ |
| 2 | + "$schema": "http://json-schema.org/draft-07/schema#", |
| 3 | + "title": "Parameters for Segmentation Pointcloud Fusion Node", |
| 4 | + "type": "object", |
| 5 | + "definitions": { |
| 6 | + "segmentation_pointcloud_fusion": { |
| 7 | + "type": "object", |
| 8 | + "properties": { |
| 9 | + "filter_semantic_label_target": { |
| 10 | + "type": "object", |
| 11 | + "properties": { |
| 12 | + "UNKNOWN": { |
| 13 | + "type": "boolean", |
| 14 | + "description": "If true, UNKNOWN class of semantic will be filtered.", |
| 15 | + "default": false |
| 16 | + }, |
| 17 | + "BUILDING": { |
| 18 | + "type": "boolean", |
| 19 | + "description": "If true, BUILDING class of semantic will be filtered.", |
| 20 | + "default": true |
| 21 | + }, |
| 22 | + "WALL": { |
| 23 | + "type": "boolean", |
| 24 | + "description": "If true, WALL class of semantic will be filtered.", |
| 25 | + "default": true |
| 26 | + }, |
| 27 | + "OBSTACLE": { |
| 28 | + "type": "boolean", |
| 29 | + "description": "If true, OBSTACLE class of semantic will be filtered.", |
| 30 | + "default": false |
| 31 | + }, |
| 32 | + "TRAFFIC_LIGHT": { |
| 33 | + "type": "boolean", |
| 34 | + "description": "If true, TRAFFIC_LIGHT class of semantic will be filtered.", |
| 35 | + "default": false |
| 36 | + }, |
| 37 | + "TRAFFIC_SIGN": { |
| 38 | + "type": "boolean", |
| 39 | + "description": "If true, TRAFFIC_SIGN class of semantic will be filtered.", |
| 40 | + "default": false |
| 41 | + }, |
| 42 | + "PERSON": { |
| 43 | + "type": "boolean", |
| 44 | + "description": "If true, PERSON class of semantic will be filtered.", |
| 45 | + "default": false |
| 46 | + }, |
| 47 | + "VEHICLE": { |
| 48 | + "type": "boolean", |
| 49 | + "description": "If true, VEHICLE class of semantic will be filtered.", |
| 50 | + "default": false |
| 51 | + }, |
| 52 | + "BIKE": { |
| 53 | + "type": "boolean", |
| 54 | + "description": "If true, BIKE class of semantic will be filtered.", |
| 55 | + "default": false |
| 56 | + }, |
| 57 | + "ROAD": { |
| 58 | + "type": "boolean", |
| 59 | + "description": "If true, ROAD class of semantic will be filtered.", |
| 60 | + "default": true |
| 61 | + }, |
| 62 | + "SIDEWALK": { |
| 63 | + "type": "boolean", |
| 64 | + "description": "If true, SIDEWALK class of semantic will be filtered.", |
| 65 | + "default": false |
| 66 | + }, |
| 67 | + "ROAD_PAINT": { |
| 68 | + "type": "boolean", |
| 69 | + "description": "If true, ROAD_PAINT class of semantic will be filtered.", |
| 70 | + "default": false |
| 71 | + }, |
| 72 | + "CURBSTONE": { |
| 73 | + "type": "boolean", |
| 74 | + "description": "If true, CURBSTONE class of semantic will be filtered.", |
| 75 | + "default": false |
| 76 | + }, |
| 77 | + "CROSSWALK": { |
| 78 | + "type": "boolean", |
| 79 | + "description": "If true, CROSSWALK class of semantic will be filtered.", |
| 80 | + "default": false |
| 81 | + }, |
| 82 | + "VEGETATION": { |
| 83 | + "type": "boolean", |
| 84 | + "description": "If true, VEGETATION class of semantic will be filtered.", |
| 85 | + "default": true |
| 86 | + }, |
| 87 | + "SKY": { |
| 88 | + "type": "boolean", |
| 89 | + "description": "If true, SKY class of semantic will be filtered.", |
| 90 | + "default": false |
| 91 | + } |
| 92 | + }, |
| 93 | + "required": [ |
| 94 | + "UNKNOWN", |
| 95 | + "BUILDING", |
| 96 | + "WALL", |
| 97 | + "OBSTACLE", |
| 98 | + "TRAFFIC_LIGHT", |
| 99 | + "TRAFFIC_SIGN", |
| 100 | + "PERSON", |
| 101 | + "VEHICLE", |
| 102 | + "BIKE", |
| 103 | + "ROAD", |
| 104 | + "SIDEWALK", |
| 105 | + "ROAD_PAINT", |
| 106 | + "CURBSTONE", |
| 107 | + "CROSSWALK", |
| 108 | + "VEGETATION", |
| 109 | + "SKY" |
| 110 | + ] |
| 111 | + }, |
| 112 | + "filter_distance_threshold": { |
| 113 | + "type": "number", |
| 114 | + "description": "A maximum distance of pointcloud to apply filter [m].", |
| 115 | + "default": 60.0, |
| 116 | + "minimum": 0.0 |
| 117 | + } |
| 118 | + }, |
| 119 | + "required": ["filter_semantic_label_target", "filter_distance_threshold"] |
| 120 | + } |
| 121 | + }, |
| 122 | + "properties": { |
| 123 | + "/**": { |
| 124 | + "type": "object", |
| 125 | + "properties": { |
| 126 | + "ros__parameters": { |
| 127 | + "$ref": "#/definitions/segmentation_pointcloud_fusion" |
| 128 | + } |
| 129 | + }, |
| 130 | + "required": ["ros__parameters"] |
| 131 | + } |
| 132 | + }, |
| 133 | + "required": ["/**"] |
| 134 | +} |
0 commit comments