Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions config_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1094,6 +1094,67 @@
"$ref": "#/definitions/guid"
}
}
},
"minMaxDetectionSize": {
"$id": "#minMaxDetectionSize",
"title": "Min/Max Detection Size for Detector",
"description": "Specify the minimum and maximum detection in terms of percentage image height and width.",
"type": "object",
"required": [
"type",
"name",
"internalId",
"description",
"minWidthPercentage",
"maxWidthPercentage",
"minHeightPercentage",
"maxHeightPercentage",
"required",
"external"
],
"properties": {
"type": {
"type": "string",
"enum": [
"PParameterMinMaxDetectionSize"
]
},
"name": {
"type": "string"
},
"internalId": {
"type": "string"
},
"description": {
"type": "string"
},
"minWidthPercentage": {
"type": "number",
"minimum": 0,
"maximum": 100
},
"maxWidthPercentage": {
"type": "number",
"minimum": 0,
"maximum": 100
},
"minHeightPercentage": {
"type": "number",
"minimum": 0,
"maximum": 100
},
"maxHeightPercentage": {
"type": "number",
"minimum": 0,
"maximum": 100
},
"required": {
"type": "boolean"
},
"external": {
"type": "boolean"
}
}
}
},
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down