Search results

  1. S

    API for hikvision face detection DS-k1T320EWX

    Hi, I am trying to use the following API, and it does not seem to finish. If I want the data for the last 'x' secs, what modifications do I have to make to the API call path = 'http://10.0.0.10/ISAPI/Event/notification/alertStream' response = session.get(path, stream=True) The call is being...
  2. S

    Upload image to hikvision face recognition device

    Thank you for pointing this out. I have updated the other thread. I was not sure of the etiquette of the forum. The code and the problem is pointed out in the old thread.
  3. S

    API for hikvision face detection DS-k1T320EWX

    I realized that the files are not uploading. Hence I added the code directly. I am able to view the code. Can you please confirm that you are able to see it. I have reposted the code here again. Please look at the following snippet in the code below. std::string file_path = "./face.jpg"...
  4. S

    API for hikvision face detection DS-k1T320EWX

    Hello, Thank you, a lot, for the reply. I am currently trying to upload a jpg image. Once I am successful, I will try to upload the model data to compare with these images. I did try your last suggestion, but it failed. I am attaching the C++ file that I wrote. If you look at line number 426...
  5. S

    API for hikvision face detection DS-k1T320EWX

    Hello, Could you also direct me as to how to upload an image and link it to the correct person with this device. I have been able to create a person using the following API. POST /ISAPI/AccessControl/UserInfo/Record?format=json with the following body. { "UserInfo": { "employeeNo":"000132"...
  6. S

    Upload image to hikvision face recognition device

    Hello, I am unsure as to how to which API to call and the payload to upload an image to hikvision device DS-K1T320EWX. I am using HikVision sdk. I am a novice while dealing with Hikvision device. I wrote this code (given below) which works correctly in creating a user called John Tukey. I am...
  7. S

    API for hikvision face detection DS-k1T320EWX

    The reason is because I am not very clear about how to use the lightweight APIs. Once I finish the sdk work I will delve into using the lightweight API along with digest auth. Thanks a lot lot again for pointing me out in the correct direction.
  8. S

    Retrieving image from HikVision device

    Hello, I am using the following HikVision device DS-K1T320EWX. I am trying to retrieve the images that is stored on the device. When I run POST /ISAPI/Intelligent/FDLib/FDSearch?format=json and it retruns the I get the following output. Is modelData the actual image that is stored inside...
  9. S

    API to retrieve images stored in fdlib

    Hello, I am new to HikVision. I am using the device DS-k1T320EWX. When I am using the following API POST /ISAPI/Intelligent/FDLib/FDSearch?format=json request successful! Search Library Response: Content-Type:multipart/form-data;boundary=MIME_boundary--MIME_boundaryContent-Type...
  10. S

    API for hikvision face detection DS-k1T320EWX

    Thank you, a lot, for the response. I get the following output. Is modelData the actual image that is stored inside? If it is not the actual image, how do we retrieve the image corresponding to the modelData ? POST /ISAPI/Intelligent/FDLib/FDSearch?format=json request successful...
  11. S

    API for hikvision face detection DS-k1T320EWX

    Hi, I am trying to use the following hikvision device DS-K1T320EWX. I am using the sdk provided by hikvision. I am able to run GET /ISAPI/Intelligent/FDLib and get the following output. "FDLib": [{ "FDID": "1", "faceLibType": "blackFD" }, { "FDID": "2"...