Skip to main content
Version: 2.7.1 (latest)

Installation

Preparation

Windows
Linux
  1. Set up the execution permission for the installer before running:
  • Go to the directory, where OMNI Agent installer is downloaded to, and click the right button on the installation file.
  • Open Properties, go to the Permission tab, and check Allow execute checkbox.
  1. Install libusb-0.1.so.4 (for OMNI Agent Standalone only). To do this, run the command:
    apt install libusb-0.1-4
ARMv8
Before installing OMNI Agent for the ARMv8 platform, install the Qt5 library packages using the command:
apt-get update && apt-get install -y libqt5gui5 libqt5qml5 libqt5xml5 libqt5widgets5

Installation

Installation with GUI

  1. Download OMNI Agent installer from the distribution kit.
  2. Once the downloading is completed, run the OMNI Agent installer and follow the installation wizard's instructions.

Installation without GUI (only for Linux/Windows x86_64)

For installation on Linux

Install the following GUI libraries:

sudo apt update && sudo apt install libxrender1 libx11-xcb-dev libxkbcommon-x11-0 libfontconfig1 fontconfig libfontconfig1-dev
  1. Download the OMNI Agent installer from the distribution kit.

  2. Run the installer.

    Windows:

    InstallOMNIAgent.exe install

    The command is launched from from the console as administrator.

    Linux:

    sudo -E ./InstallOMNIAgent install

    If you receive any warnings/errors that mention the Desktop folder, ignore them (type Ignore).

    For additional information, pass the --help flag.

Activation

OMNI Agent Standalone

  1. Run OMNI Agent.

  2. Select a Standalone license and upload/drag a license file.

  3. Click Save. This will take you to the main page of OMNI Agent dashboard.

img.png

OMNI Agent Online

  1. Run OMNI Agent.
  2. On the opened web page, select "Self-hosted", put the server domain and click on Next button. The domain is specified in the platform.values.yaml of OMNI Platform distribution kit in the field ingress.rules.gateway.host.
  3. Sign in to OMNI Agent using the email and password of your OMNI Platform account. This data is specified in ./cfg/platform.secrets.json in variables platform-user-secret.default_password and platform-user-secret.default_email.
  4. This will take you to the main page of OMNI Agent dashboard.

Adding a camera

  • To use an IP camera, enter the camera URL (type: RTSP).
  • To use a USB camera, connect the camera to your machine and select it from the list of connected cameras (type: External camera).
tip

When choosing a camera, try to consider the following:

  • The main flow of people should go directly to the camera, and not perpendicular to it.
  • The light source should be behind the camera, so that faces are not shadowed in bright light.

Learn more about choosing cameras

info
Select RTSP transport type

Some IP cameras are unable to report the type of transport used for data streaming. In this case OMNI Agent can be unable to open given RTSP stream.

To manually set a fixed transport type, specify its name as a form-urlencoded parameter (without a value). For now OMNI Agent supports the following types of transport:

  • udp
  • tcp
  • http
  • udp_multicast

Example 1: rtsp://localcamera.local.net:554/rtsp?udp

Example 2: rtsp://localcamera.local.net:554/rtsp?hres=720&wres=1280&udp_multicast

Uploading a video file

After activation, click the Add a camera button. Select the type Local video file and enter the absolute path to the file.

Camera preview / video playback

After a camera is successfully added, OMNI Agent dashboard will display preview from the camera / video with detections (bboxes) of faces and silhouettes and additional information about people in the camera's field of view: their gender, age, emotions, etc.

img.png

The detected faces and silhouettes are highlighted as follows:

face bbox:

  • bbox with red corners: a face is detected but the person’s attention is none.
  • bbox with white corners: both a face and the person’s attention are detected.
  • bbox with corners of + form: image quality is insufficient or head rotation angle is not applicable for proper detection.
  • bbox with green corners: a face is detected and recognized but the person attention is not registered.
  • bbox with orange corners: a face is detected and recognized, and the person's attention is registered.

body bbox:

  • green bounding box: a human silhouette is detected and has an ID.
  • red bounding box: a human silhouette is detected, but an ID is not assigned yet.

Configure OMNI Agent as a Linux/Windows service

After installation, you can configure OMNI Agent to operate as the OS service. This will ensure that OMNI Agent starts up automatically when the OS starts, and runs in the background.

Linux

  1. Close the terminal with OMNI Agent.

  2. Enable autorun of OMNI Agent when the OS starts.

    sudo systemctl enable OMNIAgent.service
  3. Start OMNI Agent in service mode.

    sudo systemctl start OMNIAgent.service
  4. Check OMNI Agent status.

    sudo systemctl status OMNIAgent.service

Windows

  1. Close the terminal with OMNI Agent.

  2. Open Windows Task Manager -> Services -> OMNIAgent.

  3. Right-click on the OMNIAgent service, select Properties -> General -> Startup Type -> Automatic.

  4. Click Apply.

Deletion

To delete OMNI Agent, execute the commands below:

sudo systemctl stop OMNIAgent.service
sudo systemctl status OMNIAgent.service
sudo systemctl disable OMNIAgent.service
sudo /opt/OMNIAgent/uninstall purge