Skip to content

Using multiple cameras to estimate the people's position. Works with OpenVINO toolkit.

Notifications You must be signed in to change notification settings

yas-sim/openvino-multi-camera-position-estimation-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenVINO Multi-camera Position Estimation Demo

Description:

This demo will estimates the position of people from the input images. The demo takes images from multiple cameras and estimates the people's position using triangulation method.
The demo uses face-detection model and face-reidentification model to face detection and face matching accordingly. Since both models are light weight models, the demo is very light weight.
You can change the camera angle based on your camera settings by dragging the slide bars on the top of the window.
このデモは入力画像から人々の位置を推定します。デモは複数のカメラからの映像を入力として受け取り、三角法を使って人の位置を推定します。
デモはface-detectionモデルとface-reidentificationモデルを使用して顔の検出と顔の同定を行っています。どちらのモデルも軽量モデルなのでデモも高速に動きます。
ウインドウ情報のスライドバーをいじることで、カメラの設置向きに合わせた設定の調整が可能です。

result

Prerequisites:

  • OpenVINO 2021.4
  • Python modules: numpy, scipy, opencv-python, munkres

How to run:

  1. Install Intel OpenVINO toolkit 2021.4
    Download
    Get Started Guide

  2. Install Python prerequisites

python -m pip install --upgrade pip setuptools
python -m pip install -r requirements.in
  1. Download required DL models
python %INTEL_OPENVINO_DIR%\deployment_tools\open_model_zoo\tools\downloader\downloader.py ^
 --list models.lst
  1. Run the demo
python multi-camera-positioning.py

Note:

Tested on OpenVINO 2021.4 (Win10)