meter #
A meter
object represents a detected meter object in the image.
Blicker will currently detect at most one meter in the image, and images
should not contain multiple meters.
A meter object always contains the following properties:
and optionally contains the following properties, depending on the request:
Example response #
{
"objects": [
{
"meter": {
"index": 0,
"objectId": "o-YErk624b",
"messages": [],
"meterCategory": "gas",
"displayType": "analog",
"expectedMeterCategory": "gas",
"expectedDisplayType": "analog",
"objects": {
"display": [],
"serialNumber": [],
"barcode": []
}
}
}
]
}
Example response from API version 2024-03-01 #
{
"objects": [
{
"meter": {
"index": 0,
"objectId": "o-YErk624b",
"messages": [],
"meterCategory": "gas",
"displayType": "analog",
"expectedMeterCategory": "gas",
"expectedDisplayType": "analog",
"objects": {
"display": [],
"serialNumber": [],
"barcode": [],
"datamatrix": [],
"qrCode": []
}
}
}
]
}