Hikvision ANPR Camera, Get plate image.

Joined
Apr 24, 2020
Messages
2
Reaction score
0
Location
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.
 
Joined
Apr 24, 2020
Messages
2
Reaction score
0
Location
Wales
<?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>
 

meirperetz

n3wb
Joined
Nov 30, 2021
Messages
2
Reaction score
1
Location
israel
did you figure it out?
I have the same issue, please let me know if you find any solution for it.
 

bebedumi

n3wb
Joined
Oct 18, 2022
Messages
1
Reaction score
0
Location
france
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
 
Joined
Apr 27, 2023
Messages
2
Reaction score
0
Location
USA
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
Hello.
Did you manage to find a way to get the full image?
 
Top