Hello,
I’m new in milestones SDK, so please don’t judge to soon 
I have a question, maybe someone knows how to solve.
What I want to make, that is LPR server doesn’t detect camera I want to register new LPR number with numberplate “000000”.
I tried to send an xml as analytic event via socket (port 9090). Milestones receives this alarms, registers, also this alarm is visible in LPR plugin, but I can’t (or don’t know) how to add this “000000” to this message.
I am in doubt what to answer.
With the Analytics Event Trigger via XML sample you could trigger an analytics event and have the object set to “000000”, I think this would be very possible.
As I am not sure this answers the question I will ask a key question: Do you use Milestone XProtect LPR, or are you implementing your own LPR solution?
Also, could you elaborate on what you are trying to achieve?
Hi,
yes, I’m using Milestone LPR solution.
Idea of project:
There is a barrier witch opens from loop. You can drive in free. Now what we did is that we added an LPR camera, IP IO controller and LED display. Client wants, that when car is passing barrier LED showed recognized numberplate.
So what I did is that when car is on loop my IO controller gets input and then I send analytic alarm to Xprotect. When Xprotect receives alarm it starts feed on LPR camera. When car goes off the loop then IO controller looses input and then I send analytic alarm to Xprotect to stop feed. So between these two events if numberplate occurs in DB then I show it in LED display. If numberplate doesn’t occurs I send and alarm to security that LPR was not found (external application. also I’m attaching screenshot from camera). So then security guy must see playback and enter correct numberplate. So here I stop. I want that when security guy enters numberplate in my application it appeared also in Xprotect LPR. I have a timestamp when screenshot was takes, and etc, I just can’t find how to add this event to LPR module.
Try sending this in your application (or using TriggerAnalyticsEventXML sample)
<AnalyticsEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:milestone-systems">
<EventHeader>
<ID>00000000-0000-0000-0000-000000000000</ID>
<Timestamp>$timestamp$</Timestamp>
<Type>LPR Event</Type>
<!-- Insert Event Message here -->
<Message>MyAnalyticsEvent01</Message>
<CustomTag>TagFromXML</CustomTag>
<Source>
<!-- Insert camera URI here, if you don't have the GUID. -->
<!-- (For multichannel devices, URI may contain channel number after ',') -->
<Name>10.100.50.120</Name>
</Source>
</EventHeader>
<Description>
Analytics event description.
</Description>
<Location>
Event location 1
</Location>
<ObjectList>
<Object>
<Value>
000000
</Value>
</Object>
</ObjectList>
<Vendor>
<Name>My Smart Video</Name>
</Vendor>
</AnalyticsEvent>
Note: There is an XSD at “[C:\Program](file:C:/Program) Files\Milestone\MIPSDK\XSD\AnalyticsEvent.xsd”
Hi,
thanks for help it worked.
in my XML was missing.