表示物体检测结果设定参数的对象
name | type | meaning |
---|---|---|
maxLabels | int | 不必须,表示希望接受的最多标签数量 |
minConfidence | float | 不必须,表示接受标签的最低置信度 |
syntax sample
from vision.models import DetectLabelsParam
detect_labels_param = DetectLabelsParam(max_labels = 5, min_confidence = 0.1)
parameters
max_labels : int
最多标签数量
min_confidence : float
接受标签的最低置信度
return type