Helmet Detection
Nodeflux Helmet Detection is a Vision Artificial Intelegence Analytics Software which provides recognition of helmet for all types of helmets. Nodeflux Helmet Detection is using a Deep Learning algorithm that developed to adapt real conditions in indonesia, like various kinds of helmet, and any wide range of environmental conditions.
Send a POST request to
https://api.cloud.nodeflux.io/v1/analytics/helmet-detection
by providing these arguments as application/json
.{
"images": [
"{INSERT_JPEG_IMAGE_AS_BASE64_STRING_FOR_YOUR_HELMET}"
]
HTTP Mapping: 202 Accepted
{
"job": {
"id": "cd9ff8539caf75d78ac8a9d8700fd10cbbfaa759e2096a94GIYDEMRNGA2S2MJQ",
"result": {
"status": "success",
"analytic_type": "HELMET_DETECTION",
"result": [
{
"helm_detections": [
{
"helm": 1,
"confidence": 0.7191246151924133,
"bounding_box": {
"top": 0.11127391457557678,
"left": 0.6707842350006104,
"width": 0.047774672508239746,
"height": 0.10281848907470705
}
},
{
"helm": 0,
"confidence": 0.4083919525146485,
"bounding_box": {
"top": 0.974684476852417,
"left": 0.977452039718628,
"width": 0.019530057907104492,
"height": 0.02457857131958008
}
}
]
}
]
}
},
"message": "Helm Detection Success",
"ok": true
}
Last modified 1yr ago