LPR and speed features

Hi,

We have a project which use ZenNPR software integrated with Milestone.

Is it possible to get LPR plate number through Milestone event server with MIPSDK?

Same question with ARHSpeed camera, is it possible to get car speed through Milestone event server?

Regards,

Yes, you can do this using the AnalyticsEvent class to represent a number plate recognition.

You fire the event using the SendMessage method and the NewEventCommand message id:

EnvironmentManager.Instance.SendMessage(new Message(MessageId.Server.NewEventCommand) { Data = analyticsEvent });

You should use AnalyticsObject classes in AnalyticsEvent.ObjectList to represent the properties of the recognition.

I recommend placing the registration number in the Value property.

The ObjectMotion class may contain the speed, if you have it.

If these classes are for some reason unsuited, you can place custom data in the AnalyticsEvent.Vendor.CustomData property.

Please note that some of the properties are not displayed in the alarm/event list by default and need to be enabled manually by the administrator - other properties are not supported by the list at all. This includes speed data.

You may want to create a custom view item or worksapce in the Smart Client to display your custom data.

ok, thank you.