如何从海康威视摄像头获取行人号码?

问题描述 投票:0回答:2

我有一台海康威视网络摄像机,内置人数统计应用程序。我正在尝试构建一个桌面/网络应用程序,它读取通过的人数并对其进行处理。我只是想知道如何才能捕获这些人的数量,无论使用什么编程语言。摄像机型号为海康威视 iDS-2CD6412FWD/C。任何答案都很重要。谢谢你。

sdk counting ip-camera
2个回答
2
投票

所以终点是:

/ISAPI/System/Video/inputs/channels/1/counting/search 

xml 主体是:

<?xml version="1.0" encoding="utf-16"?>
<countingStatisticsDescription xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <reportType>daily</reportType>
    <timeSpanList>
        <timeSpan>
           <startTime>2017-05-03T00:00:00</startTime>
            <endTime>2017-05-03T23:59:59</endTime>
        </timeSpan>
    </timeSpanList>
</countingStatisticsDescription>

0
投票

它适用于网址:

http://yourip:yourport/ISAPI/System/Video/inputs/channels/1/counting/search

和 xml:

<CountingStatisticsDescription version="2.0" xmlns="http://www.isapi.org/ver20/XMLSchema">
  <statisticType>peoplePassing</statisticType>
  <reportType>daily</reportType>
  <timeSpanList>
    <timeSpan>
           <startTime>2024-01-01T00:00:00</startTime>
           <endTime>2024-01-01T23:59:59</endTime>
    </timeSpan>
  </timeSpanList>
  <MinTimeInterval>hour</MinTimeInterval>
</CountingStatisticsDescription>
© www.soinside.com 2019 - 2024. All rights reserved.