detectron2
copied
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readme
Files and versions
Updated 3 years ago
object-detection
Object Detection using Detectron2
author: filip-halt, fzliu
Description
This operator uses Facebook's Detectron2 library to compute bounding boxes, class labels, and class scores for detected objects in a given image.
Code Example
import towhee
towhee.glob('./towhee.jpg') \
.image_decode.cv2() \
.object_detection.detectron2(model_name='retinanet_resnet50') \
.show()
Factory Constructor
Create the operator via the following factory method
object_detection.detectron2(model_name='retinanet_resnet50', thresh=0.5, num_classes=1000, skip_preprocess=False)
Parameters:
model_name: str
A string indicating which model to use.
thresh: float
The threshold value for which an object is detected (default value: 0.5
). Set this value lower to detect more objects at the expense of accuracy, or higher to reduce the total number of detections but increase the quality of detected objects.
| 3 Commits | ||
---|---|---|---|
|
840 B
|
3 years ago | |
|
3.0 KiB
|
3 years ago | |
|
1.1 KiB
|
3 years ago | |
|
73 B
|
3 years ago | |
|
2.2 KiB
|
3 years ago | |
|
111 B
|
3 years ago |