This ACAP is based on DetectX, an open-source package. The model is trained on selected labels in the Hagird V2 dataset.
call, dislike, fist, four, like, middle_finger, mute, no_gesture, ok, one, palm, peace, peace_inverted, rock, stop, stop_inverted, three, thumb_index, two_up, two_up_inverted
- Axis Camera based on ARTPEC-8.
The user interface is designed to validate detection and apply various filters.
The 10 latest detections is shown in video as bounding box and table. The events are shown in a separate table.
Initial filter to reduce the number of false detection.
Additional filter to reduce the number of false detection. Click button and use mouse to define an area that the center of the detection must be within.
Additional filter to reduce the number of false detection. Click button and use mouse to define a minimum width and height that the detection must have.
Configure the MQTT Broker to connect to.
Properties names name & location are properties targeting systems with many devices in order to identify who sent the message.
The coordinate system is relative [0..1000][0..1000] regardless of resolution and aspect ratio. The origo is in the top-left corner.
Detections
[pretopic]/detection
{
"detections":[
{"label":"like","c":50,"x":530,"y":146,"w":46,"h":50,"timestamp":1734820170032},
{"label":"like","c":69,"x":222,"y":203,"w":150,"h":96,"timestamp":1734820170032}
],
"name":"Parking 3",
"location":"Site 4"
}
Events
[pretopic]/event/B8A44F000000/like/true
{
"state": true,
"label": "like",
"c": 50,
"x": 530,
"y": 146,
"w": 46,
"h": 50,
"timestamp": 1734820051124,
"name":"Parking 3",
"location":"Site 4"
}
[pretopic]/event/B8A44F000000/like/false
{
"label": "like",
"state": false,
"timestamp": 1734820051124,
"name":"Parking 3",
"location":"Site 4"
}
Additional filters to apply on the detection and output.
A minumum time that the detection must be stable before an event is fired. It define how trigger-happy the evant shall be.
The minumum event duration a detection may have.
Enable or disable selected gestures.
The service fires two different events targeting different use cases. Service may monitor these event using camera event syste, ONVIF event stream and MQTT.
A stateful event (high/low) for each detected label. The event includes property state (true/false).
- Updated model with training with selected labes from Hagrid V2
- Added support for Detection transition
- Fixed flawed event states
- Fixed potential memoryleak
- Fixed model tflite export that resulted in very high (2s) inference time
- Added event "Label Counter" for use cases needing to know how many objects are detected
- Fixed flaw for Detection transition
- Switched to latest SDK
- Refactoring
- Modified events to give all labels its own event
- Updated visualization in user interface
- Remove event labale counter
- Fixed a flaw that impact events
- Bumbed up to ACAP Wrapper 3.2.0
- Added MQTT
- Restructured the About page