deeplabcut.pose_estimation_pytorch.models.detectors.fasterRCNN
Classes:
| Name | Description |
|---|---|
FasterRCNN |
A FasterRCNN detector. |
FasterRCNN
Bases: TorchvisionDetectorAdaptor
A FasterRCNN detector.
Towards Real-Time Object Detection with Region Proposal Networks
Ren, Shaoqing, Kaiming He, Ross Girshick, and Jian Sun. "Faster r-cnn: Towards real-time object detection with region proposal networks." Advances in neural information processing systems 28 (2015).
This class is a wrapper of the torchvision implementation of a FasterRCNN (source: https://github.com/pytorch/vision/blob/main/torchvision/models/detection/faster_rcnn.py).
Some of the available FasterRCNN variants (from fastest to most powerful): - fasterrcnn_mobilenet_v3_large_fpn - fasterrcnn_resnet50_fpn - fasterrcnn_resnet50_fpn_v2
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The FasterRCNN variant to use (see all options at https://pytorch.org/vision/stable/models.html#object-detection). |
'fasterrcnn_mobilenet_v3_large_fpn'
|
|
bool
|
Whether to load model weights pretrained on COCO |
False
|
|
float
|
during inference, only return proposals with a classification score greater than box_score_thresh |
0.01
|