Options for the object detector task.
mp
.
tasks
.
vision
.
ObjectDetectorOptions
(
base_options
:
mp
.
tasks
.
BaseOptions
,
running_mode
:
mp
.
tasks
.
vision
.
RunningMode
=
mp
.
tasks
.
vision
.
FaceDetectorOptions
.
running_mode
,
display_names_locale
:
Optional
[
str
]
=
None
,
max_results
:
Optional
[
int
]
=
None
,
score_threshold
:
Optional
[
float
]
=
None
,
category_allowlist
:
Optional
[
List
[
str
]]
=
None
,
category_denylist
:
Optional
[
List
[
str
]]
=
None
,
result_callback
:
Optional
[
Callable
[[
ObjectDetectorResult
,
image_module
.
Image
,
int
],
None
]]
=
None
)
Attributes
The running mode of the task. Default to the image mode.
Object detector task has three running modes: 1) The image mode for
detecting objects on single image inputs. 2) The video mode for detecting
objects on the decoded frames of a video. 3) The live stream mode for
detecting objects on a live stream of input data, such as from camera.
The locale to use for display names specified through
the TFLite Model Metadata.
Overrides the ones provided in the model metadata. Results
below this value are rejected.
Allowlist of category names. If non-empty, detection
results whose category name is not in this set will be filtered out.
Duplicate or unknown category names are ignored. Mutually exclusive with
category_denylist
.Denylist of category names. If non-empty, detection
results whose category name is in this set will be filtered out. Duplicate
or unknown category names are ignored. Mutually exclusive with
category_allowlist
.Methods
__eq__
__eq__
(
other
)


