Intelligent video analytics enables hospital security systems to automatically monitor the premises and trigger real-time responses to emergencies and disturbances. A neural-network based video monitoring system can instantly detect, analyze and identify whether a patient needs attention or there is an unauthorized person on the premises, and notify a nurse or hospital security respectively.
Task: Build an intelligent video analytics system to analyze security camera footage in real time for hospitals and healthcare facilities.
Subtask: Reduce the workload on servers that receive events transmitted from cameras for analysis.
Solution: Enable continuous analysis of events and video-stream filtering at camera level using neural networks.
Our aim was to establish continuous analysis of images and events captured by CCTV cameras to filter out non-events, efficiently analyze notable events and respond to emergencies in real time. This required using ML tools to train neural networks to recognize images and check them against a database, detect movement and direction, and analyze retrieved information.
Our team delivered every component of this project except for building the neural networks.
Depending on the technical profile of the cameras in place, we would use one of the following options for filtering streams of events passed between the cameras and the analytics server:
a) Each camera is directly connected to the server, streaming unfiltered video data.
b) Cameras are divided into clusters and each cluster is connected to a local mediation server hosting a neural network that analyzes data streamed from several cameras, filtering out non-events before passing on data to the central analytics server. The mediation server transmits video data streams in full, but it filters the stream of events that the central server will have to process.
c) Each camera is equipped with its own, custom-coded neural network, which analyzes the incoming video stream following dynamically generated rules, filters out non-events and transmits a reduced data stream to the server.
We used machine learning algorithms to set data filtering tasks for neural networks, built an ML pipeline for training and a separate one for retraining neural networks. We also designed a custom inference engine for this project, capable of running on small processing units such as video camera processors.
A number of medical facilities in different countries are currently using intelligent video analysis systems we helped build.
Tech stack employed: Python, Go, C++, CUDA, Tensorflow, PyTorch, TensorRT