Get plates from Hikvision LPR camera (returning only the last 20 plates) How to retrieve more?

pp.tt

n3wb
Joined
May 9, 2020
Messages
1
Reaction score
0
Location
BR
I want to retrieving plates from LPR Hikvision camera but xml file returns only last 20 plates. Someone can help me to define correctly xml parameters to retrieve more registries?


POST URL: .../ISAPI/Traffic/channels/1/vehicleDetect/plates


POST XML:

<?xml version="1.0" encoding="UTF-8"?>
<AfterTime version="2.0" xmlns="">
<picTime>2020-06-10T00:00:00Z</picTime>
</AfterTime>




XML return this:

<?xml version="1.0" encoding="UTF-8"?>
<Plates version="2.0" xmlns="">

<Plate>
<captureTime>20200510...</captureTime>
<plateNumber>xxxxxxx</plateNumber>
<picName>20200510...</picName>
<country>xxx</country>
<laneNo>1</laneNo>
<direction>forward</direction>
<matchingResult>otherlist</matchingResult>
</Plate>

... + 19 ...

</Plates>
 

Sentu

n3wb
Joined
May 5, 2021
Messages
2
Reaction score
0
Location
India
I want to retrieving plates from LPR Hikvision camera but xml file returns only last 20 plates. Someone can help me to define correctly xml parameters to retrieve more registries?


POST URL: .../ISAPI/Traffic/channels/1/vehicleDetect/plates


POST XML:

<?xml version="1.0" encoding="UTF-8"?>
<AfterTime version="2.0" xmlns="">
<picTime>2020-06-10T00:00:00Z</picTime>
</AfterTime>




XML return this:

<?xml version="1.0" encoding="UTF-8"?>
<Plates version="2.0" xmlns="">

<Plate>
<captureTime>20200510...</captureTime>
<plateNumber>xxxxxxx</plateNumber>
<picName>20200510...</picName>
<country>xxx</country>
<laneNo>1</laneNo>
<direction>forward</direction>
<matchingResult>otherlist</matchingResult>
</Plate>

... + 19 ...

</Plates>
Were you able to find how to get more than 20 plates? I am facing the same issue?
 

trempa92

Pulling my weight
Joined
Mar 26, 2020
Messages
724
Reaction score
221
Location
Croatia,Zagreb
I dont think its possible, its has limited memory. What you need to do is realtime save captured data and store it for example in SQL database, and then fetch from database. Thenyou fetch from database. Where you can even add names to those plates.
 
Top