This is an action detector for the Smart Classroom scenario. It is based on the RMNet backbone that includes depth-wise convolutions to reduce the amount of computations for the 3x3 convolution block. The first SSD head from 1/8 and 1/16 scale feature maps has four clustered prior boxes and outputs detected persons (two class detector). The second SSD-based head predicts actions of the detected persons. Possible actions: sitting, writing, raising hand, standing, turned around, lie on the desk.
Metric | Value |
---|---|
Detector AP (internal test set 2) | 90.70% |
Accuracy (internal test set 2) | 80.74% |
Pose coverage | sitting, writing, raising_hand, standing, |
turned around, lie on the desk | |
Support of occluded pedestrians | YES |
Occlusion coverage | <50% |
Min pedestrian height | 80 pixels (on 1080p) |
GFlops | 8.225 |
MParams | 2.001 |
Source framework | TensorFlow* |
Average Precision (AP) is defined as an area under the precision/recall curve.
Image, name: input
, shape: 1, 400, 680, 3
in the format B, H, W, C
, where:
B
- batch sizeH
- image heightW
- image widthC
- number of channels
Expected color order is BGR
.
The net outputs four branches:
- name:
ActionNet/out_detection_loc
, shape:b, num_priors, 4
- Box coordinates in SSD format - name:
ActionNet/out_detection_conf
, shape:b, num_priors, 2
- Detection confidences - name:
ActionNet/action_heads/out_head_1_anchor_1
, shape:b, 50, 85, 6
- Action confidences - name:
ActionNet/action_heads/out_head_2_anchor_1
, shape:b, 25, 43, 6
- Action confidences - name:
ActionNet/action_heads/out_head_2_anchor_2
, shape:b, 25, 43, 6
- Action confidences - name:
ActionNet/action_heads/out_head_2_anchor_3
, shape:b, 25, 43, 6
- Action confidences - name:
ActionNet/action_heads/out_head_2_anchor_4
, shape:b, 25, 43, 6
- Action confidences
Where:
b
- batch sizenum_priors
- number of priors in SSD format (equal to 50x85x1+25x43x4=8550)
The model can be used in the following demos provided by the Open Model Zoo to show its capabilities:
[*] Other names and brands may be claimed as the property of others.