Video Wall
The FindFace Multi Video Wall allows for basic video surveillance. Use it to display the video image from cameras and video files.
Important
Advanced video surveillance is available with Video Recorder.
In this chapter:
Display Video
The Video Wall offers two modes, four predefined layouts in each:
video streaming
video streaming with object detection and episode feed
To display video on the Video Wall, do the following:
Navigate to the Video Wall tab.
Select a mode and camera layout.
Drag-n-drop cameras of your choice to the Video Wall.
You can work with the episode feed on the Video Wall in the same manner as with the Episodes tab, including the following basic filters:
Watch Lists
Matches
Acknowledged
Configure Video Wall
You can set up the Video Wall features that determine how it highlights objects in the video:
turn on/off the bbox and attribute data display for faces, cars, and bodies
Note
The attribute data are displayed if you have previously enabled neural networks for attribute recognition. See Enable Face Attribute Recognition, Enable Car and Car Attribute Recognition, Enable Body and Body Attribute Recognition.
enable blurring unmatched objects to comply with personal data protection laws (GDPR and similar)
To configure the Video Wall, do the following:
Open the
/etc/findface-security/config.py
configuration file.sudo vi /etc/findface-security/config.py
Find the
FFSECURITY_UI_CONFIG
->available_video_wall_features
section.Set
"faces"
,"cars"
,"bodies"
True
orFalse
to enable/disable the bbox and attribute data display for the relevant objects.FFSECURITY_UI_CONFIG = { ... "available_video_wall_features": { "faces": True, "cars": False, "bodies": True, ... } }
Set
"gdpr": True
to enable blurring all unmatched objects displayed on the Video Wall.Tip
To fully comply with the personal data protection laws, follow this guide.
FFSECURITY_UI_CONFIG = { ... "available_video_wall_features": { ... "gdpr": True } }
Restart
findface-security
.sudo systemctl restart findface-security.service
See also