Hikvision ANPR Camera, Get plate image.

Apr 24, 2020
2
0
Wales
Hello IP Cam Talk community,

I've been developing an ANPR application which works via ISAPI. I've got the data storing and all that good stuff, anpr side of it works perfectly as required.
However what I am trying to do is store the plate image that the camera takes when reading. You can see this plate image via the web ui for the cameras, I have previously stored this image by simply downloading it from the UI's image link, but that's poor practice, and would like to be able to access the cameras storage and simply download it that way. (over http would be the ideal situation)

Where exactly and how would I access the folder within the camera to save this image?

0dgelhveokmke65hn6l_162L1192_Plate.jpg

This is the image I require. The file name is supplied within the xml response body <picName></picName> from the isapi post request.

Any support here will be gladly accepted.
 
<?xml version="1.0" encoding="UTF-8"?>
<Plates version="2.0" xmlns="">
<Plate>
<captureTime>20200424T1616270000</captureTime>
<plateNumber>DK18HVX</plateNumber>
<picName>202004241616278800</picName> ---- this is what I require.
<country>GBR</country>
<laneNo>1</laneNo>
<direction>forward</direction>
</Plate>
</Plates>
 
I found a way

<Plate>
<captureTime>20211229T222544-300</captureTime>
<plateNumber>PPG2827</plateNumber>
<picName>202112292225446850</picName>
<country>BRA</country>
<laneNo>1</laneNo>
<direction>forward</direction>
<matchingResult>otherlist</matchingResult>
</Plate>
</Plates>


View attachment 113844
Hello,
I'm working on project, and your answer was helpful, but what if I want to get the car photo also ?
How could I get it ?

thanks for your help.
George