For Example:
>>the O/p is
- Code: Select all
Detections:
{
"image": {
"width": 900,
"height": 620,
"orientation": 1
},
"requestId": "2a67ebf0d9c745eb8d807a399a195892",
"objects": [
{
"objectId": "_vehicle_C650Ed56-008B-4769-9F6A-6D8B7A8F2B25",
"vehicleAnnotation": {
"bounding": {
"vertices": [
{
"x": 430,
"y": 286
},
{
"x": 835,
"y": 286
},
{
"x": 835,
"y": 559
},
{
"x": 430,
"y": 559
}
]
},
"recognitionConfidence": 0.9306,
"licenseplate": {
"bounding": {
"vertices": [
{
"x": 617,
"y": 452
},
{
"x": 743,
"y": 452
},
{
"x": 743,
"y": 482
},
{
"x": 617,
"y": 482
}
]
},
"attributes": {
"system": {
"string": {
"name": "RTBB221",
"confidence": 0.9964
},
"characters": [
{
"bounding": {
"vertices": [
{
"y": 454,
"x": 637
},
{
"y": 454,
"x": 649
},
{
"y": 474,
"x": 649
},
{
"y": 474,
"x": 637
}
]
},
"index": 0,
"confidence": 0.9999,
"character": "R"
},
{
"bounding": {
"vertices": [
{
"y": 454,
"x": 648
},
{
"y": 454,
"x": 661
},
{
"y": 474,
"x": 661
},
{
"y": 474,
"x": 648
}
]
},
"index": 1,
"confidence": 0.9999,
"character": "T"
},
{
"bounding": {
"vertices": [
{
"y": 455,
"x": 672
},
{
"y": 455,
"x": 684
},
{
"y": 474,
"x": 684
},
{
"y": 474,
"x": 672
}
]
},
"index": 2,
"confidence": 0.9988,
"character": "B"
},
{
"bounding": {
"vertices": [
{
"y": 455,
"x": 683
},
{
"y": 455,
"x": 696
},
{
"y": 474,
"x": 696
},
{
"y": 474,
"x": 683
}
]
},
"index": 3,
"confidence": 0.9976,
"character": "B"
},
{
"bounding": {
"vertices": [
{
"y": 456,
"x": 699
},
{
"y": 456,
"x": 710
},
{
"y": 475,
"x": 710
},
{
"y": 475,
"x": 699
}
]
},
"index": 4,
"confidence": 0.9999,
"character": "2"
},
{
"bounding": {
"vertices": [
{
"y": 456,
"x": 710
},
{
"y": 456,
"x": 721
},
{
"y": 475,
"x": 721
},
{
"y": 475,
"x": 710
}
]
},
"index": 5,
"confidence": 0.9999,
"character": "2"
},
{
"bounding": {
"vertices": [
{
"y": 457,
"x": 720
},
{
"y": 457,
"x": 732
},
{
"y": 476,
"x": 732
},
{
"y": 476,
"x": 720
}
]
},
"index": 6,
"confidence": 0.9999,
"character": "1"
}
],
"region": {
"name": "Germany",
"confidence": 0.9961
}
}
}
},
"attributes": {
"system": {
"vehicleType": "car",
"make": {
"name": "Audi",
"confidence": 0.9306
},
"model": {
"name": "R8",
"confidence": 0.9306
},
"color": {
"name": "white",
"confidence": 0.8898
}
}
}
},
"objectType": "vehicle"
}
]
}
i want only print
- Code: Select all
Detections: Audi
- Code: Select all
Detections: car
Thanks in advance..
