Hi,
So my ai bridge is connected
I am making an app that automatically registers itself and then makes the topics
as you can see below the noew app and its topics are made
Question 1)
Now when the app detects a person I look in the ai bridge proxy container and I see
the file I send is in the comment below this oneI get the response
'_content': b'', '_content_consumed': True, '_next': None, 'status_code': 200, 'headers': {'Date': 'Wed, 06 Aug 2025 12:52:40 GMT', 'Content-Length': '0'}, 'raw': <urllib3.response.HTTPResponse object at 0xffff2803b910>, 'url': 'http://10.26.35.15:8382/event/86e3aed3-1553-5d23-8d61-2286215e65f1/person/analytics_event', 'encoding': None, 'history': [], 'reason': 'OK', 'cookies': <RequestsCookieJar[]>, 'elapsed': datetime.timedelta(microseconds=21602), 'request': <PreparedRequest [POST]>, 'connection': <requests.adapters.HTTPAdapter object at 0xffff2803b160>}
But for the person in chair class I see in the ai bridge proxy
![]()
with the JSON
{
"@context": "http://www.insights.data/2021/06/analytics-event.jsonld",
"type": "AnalyticsEvent",
"name": "detect_objects event",
"description": "VisionPlatform detect_objects event",
"uuid": "84a8942b-5772-4d0d-9ae3-33f71df495e5",
"triggeredByRule": [
{
"type": "Rule",
"name": "Deepstream TRIGGER",
"description": "Visionplatform trigger",
"class": "person",
"hasTriggerZone": [
{
"type": "Polygon",
"closed": true,
"hasVertices": [
{
"x": 0.010416666666666666,
"y": 0.018518518518518517
},
{
"x": 0.010416666666666666,
"y": 0.9259259259259259
},
{
"x": 0.9375,
"y": 0.9259259259259259
},
{
"x": 0.9375,
"y": 0.018518518518518517
}
],
"hasLineColor": {
"red": 255,
"green": 255,
"blue": 0,
"alpha": 255
},
"hasFillColor": {
"red": 255,
"green": 255,
"blue": 0,
"alpha": 30
}
}
]
}
],
"fromSource": {
"type": "Reference",
"uuid": "9084b8f0-4b4c-4dda-8960-de68905e0588"
},
"involvedObject": [
{
"type": "Object",
"name": "person",
"description": "person",
"class": "person",
"confidence": 0.924281120300293,
"trigger": true,
"hasOutline": {
"type": "Polygon",
"closed": true,
"hasVertices": [
{
"x": 1.2799382209777832,
"y": 0.44793994338424115
},
{
"x": 1.7135223150253296,
"y": 0.44793994338424115
},
{
"x": 1.7135223150253296,
"y": 2.3731648127237954
},
{
"x": 1.2799382209777832,
"y": 2.3731648127237954
}
],
"hasLineColor": {
"red": 0,
"green": 255,
"blue": 0,
"alpha": 255
}
}
}
],
"fromVendor": {
"type": "Vendor",
"name": "visionplatform.ai"
}
}
And the responce I get is
{'_content': b'', '_content_consumed': True, '_next': None, 'status_code': 200, 'headers': {'Date': 'Wed, 06 Aug 2025 12:55:09 GMT', 'Content-Length': '0'}, 'raw': <urllib3.response.HTTPResponse object at 0xfffea4109970>, 'url': 'http://10.26.35.15:8382/event/86e3aed3-1553-5d23-8d61-2286215e65f1/person_with_chair/analytics_event', 'encoding': None, 'history': [], 'reason': 'OK', 'cookies': <RequestsCookieJar[]>, 'elapsed': datetime.timedelta(microseconds=5331), 'request': <PreparedRequest [POST]>, 'connection': <requests.adapters.HTTPAdapter object at 0xfffea4109250>}
2025-08-06 14:55:09,667 - INFO - Milestone event 84a8942b-5772-4d0d-9ae3-33f71df495e5 uploaded successfully to http://10.26.35.15:8382/event/86e3aed3-1553-5d23-8d61-2286215e65f1/person_with_chair/analytics_event
Why is this happening ?
Question 2)
As you can see in the picture the camera is not registered to the app
but when I look at the smart client I see events for the camera how is this connection even made?Question 3)
When the person topic is removed and the app is updated. I see that the new app does not have. a person class but when the person class is added again the camera automatically is subscribed to the topic. Its almost as if there is a database where the camera stores all the topics it was connected to and remembers.
Can you explain this persistence ?






