2

I am using a Tattile camera with ANPR and trying to use it with customized SW following ANPR_DeveloperGuide_E.pdf.

I managed to access all functionality (getting data, setting data, requests including getting images) except getting plate numbers. I am doing

  1. Enable Engine
  2. Start Trigger
  3. Get Check List (A or B)

and for each command I got positive response and there are no errors but the "Get Check List" command return 0 detected plate numbers.

Using the webinterface one can see that the number plate is clearly visible and centered.

LeifSec
  • 31
  • 3

1 Answers1

1

There is another StartTrigger command with the same command code but fix content. There is just gate_time_in_msand trigger_string. trigger_string is fix 32 bytes long and padding bytes and terminating zero are included in the length.

Then the communication is handled on another port (other than 31000). This can be set in the web interface of the camera (under "TCP message"). The camera is now a client and send this message to the requester (The message is not given by the settings in the web interface):

  • image as jpeg: variable length padded to full 4 bytes including some text information (Exif?)
  • plate text: 32 bytes,
  • site address: 128 bytes
  • net trig id: 64 bytes
LeifSec
  • 31
  • 3