Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of contents

...

Table of Contents
minLevel1
maxLevel4

概要

Overview

...

3rd party camera extension software developed for the i-PRO カメラ用に開発されたサードパーティのカメラ拡張ソフトウェアは、Video Insight、Genetec、Milestone を備えた camera can be used in the i-PRO Active Guard システムで使用できます。

i-PROアクティブガードについて詳しくはこちら

このドキュメントは、i-PRO カメラ拡張ソフトウェア開発者を対象としており、i-PRO Active Guard システムで動作する拡張ソフトウェアの実装方法、特に i-PRO カメラの API を使用した特定のデータ形式を対象としています。

開発者についての基本的な紹介はこちら

システムの構成と特長

...

VMS では次の機能が利用可能になります。
・VMS にイベントを表示します (日付/時刻、カメラ、イベント名、その他の詳細)
・ルールベースのアクションを設定する
・アラーム履歴の検索

i-PRO Active Guardシステム用拡張ソフトウェアの導入方法

適用できる拡張ソフトウェアの種類

何らかの付加情報を付加したイベント通知用拡張ソフトのみ適用可能です。 より高度な機能 (オブジェクトの分類やカウントなど) や関数 (境界ボックスなど) はサポートされていません。

サンプルアプリケーション

簡単に実装できるサンプルアプリケーションがSDKパッケージに含まれています。 system with Video Insight, Genetec and Milestone.

More detail about i-PRO Active Guard is here.

This document is targeted at i-PRO camera extension software developer, how to implement the extension software that works with i-PRO Active Guard system, especially scopes the specific data format using i-PRO camera’s API.

Basic introduction about development is here.

System structure and features

...

Following features will be available on VMS.
・Show the event on VMS (date/time, camera, event name and some details)
・Configure rule based action
・Search alarm history

How to implement extension software for i-PRO Active Guard system

...

Applicable type of extension software

Only a type of extension software for event notification with some additional information can be applied. More advanced features (like object classification or counting) or functions (ex. bounding box) are not supported.

Sample application

Sample application for easy implementation is included in SDK package.

src/adamapp/active_guard_sample_app

src/adamapp-py/active_guard_sample_app

...

Camera API to use

i-PROカメラのAPI「AdamApp API」には、サードパーティがONVIFPRO camera’s API “AdamApp API” includes the interface for 3rd party to notify event to external software via ONVIF(*1) メタデータストリームプロトコルを介して外部ソフトウェアにイベントを通知するためのインターフェースが含まれています。この統合には API「ADAMmeta data stream protocol.

The API “ADAM_MetaDataStream_SetRaw( ST_ADAM_METADATA_STREAM_RAW* pData )」が使用されます。 拡張ソフトウェアがイベントを検出し、この API を使用すると、データが i PRO Active Guard サーバーに送信され、i” is used for this integration. When the extension software detects the event and use this API, the data will be sent to iPRO Active Guard server and i-PRO Active Guard サーバーも VMS サーバーに通知されます。server also notify to VMS server

...

詳細については API マニュアルを参照してください。Please refer to API manual for more details.

(*1) : ONVIFはONVIFONVIF is a trademark of ONVIF, Inc.の商標です。

E_ADAM_METADATA_TYPE

「ADAM“ADAM_METADATA_TYPE_EVENT」は、iEVENT” is used for i-PRO Active Guard の統合に使用されます。integration.

m_pData

「m_pData」は、ONVIF で定義された XML データ形式でイベントを表す必要があります。 “m_pData” should represent the event in ONVIF defined XML data format. Integration with i-PRO Active Guardとの連携は、本書に記載のフォーマットに従って実装することで実現します。

...

Guard is achieved by implementing according to the format described in this document.

Example of notification

<?xml version="1.0" encoding="UTF-8"?>
<tt:MetaDataStream xmlns:tt="http://www.onvif.org/ver10/schema" xmlns:wsnt="http://docs.oasis-open.org/wsn/b-2" xmlns:xsd="http://docs.onvif.org/ver10/schema">
<tt:Event>
<wsnt:NotificationMessage>
<wsnt:Topic Dialect="http://www.onvif.org/ver10/tev/topicExpression/ConcreteSet" xmlns:tns1="http://www.onvif.org/ver10/topics">tns1:AppEvent/SampleApplication/SampleDetection</wsnt:Topic>
<wsnt:Message>
<tt:Message UtcTime="2023-01-17T17:00:00.000Z">
<tt:Source>
<tt:SimpleItem Name="VideoSource" Value="VideoSourceConfig" />
</tt:Source>
<tt:Data>
<tt:SimpleItem Name="Event detail" Value="Detected size 84x120" />
<tt:SimpleItem Name="Likelihood” Value=“0.8" />
<tt:ElementItem Name="Image">
<xsd:base64Binary>(base64 encoded jpeg image)</xsd:base64Binary>
</tt:ElementItem>
</tt:Data>
</tt:Message>
</wsnt:Message>
</wsnt:NotificationMessage>
</tt:Event>
</tt:MetaDataStream>

...

*If the application does not use “Event detail”, “Likelihood” and “Image”,<tt:Data> are no need.

実装の確認方法

適用できる拡張ソフトウェアの種類

...

How to check implementation

...

After implementation, you can check if the camera sends data correctly not using tool “ResourceMonitorExtension” included in the camera SDK package. Enter “rtsp://<ip>/Src/MediaInput/stream_1?event=1」と入力します。 この確認には VMS および 1” for “RTSP-URI”.

VMS and i-PRO Active Guard ソフトウェアは必要ありません。 システムの設定方法は各VMSのi-PRO Active Guardセットアップマニュアルを参照してください。 付録では、isoftware are not required for this confirmation.

Please refer to the i-PRO Active Guard Setup manual for each VMS how to configure the system. Appendix describes how to set up the extension software on i-PRO Active Guard サーバーおよび server and VMS での拡張ソフトウェアのセットアップ方法について説明します。.