.. _counters: ******************************************************* Face, Body, Vehicle Counters. Distance Measurement ******************************************************* .. important:: To be able to count human bodies (silhouettes) or vehicles, you first have to enable :ref:`body detection ` or :ref:`vehicle detection `. FindFace Multi allows you to count faces, bodies and vehicles on connected cameras. This functionality can apply to a wide range of situations, such as people counting in queues and waiting areas, monitoring public gatherings, crowding prevention, traffic jam detection, and more. The counting method is based on time slices, which means that the system counts faces, bodies and vehicles in static screenshots taken with a given ``count interval``. You can opt for counting faces/bodies/vehicles either on each camera independently, or collectively on all selected cameras. .. rubric:: In this section: .. contents:: :local: Create Counter =========================== To set up a counter, do the following: #. Navigate to the :guilabel:`Counters` tab. #. Click :guilabel:`+ Add new counter`. |counter_create_en| .. |counter_create_en| image:: /_static/counter_create_en.png :scale: 70% .. |counter_create_ru| image:: /_static/counter_create_ru.png :scale: 70% #. Specify the counter name. #. Select one or several camera groups for counting. #. Select one or several cameras for counting. #. Check :guilabel:`Faces` to count faces. #. Check :guilabel:`Bodies` to count bodies. Body detection has to be :ref:`enabled `. #. Check :guilabel:`Vehicles` to count vehicles. Vehicle detection has to be :ref:`enabled `. #. Specify the interval in seconds between two consecutive screenshots used for counting. #. Click :guilabel:`Save`. #. Check :guilabel:`Distance measurement` to count the distance between bodies. This option becomes available only if :guilabel:`Bodies` detector is checked. |counter_en| .. |counter_en| image:: /_static/counter_en.png :scale: 70% .. |counter_ru| image:: /_static/counter_ru.png :scale: 70% #. Make sure that the counter is activated. #. Click :guilabel:`Save`. #. (Optional) Navigate to the :guilabel:`ROI` tab to specify the face/body/vehicle tracking region within the camera(s) field. Select a camera and specify a region of interest. Click :guilabel:`Save`. |counter_roi_en| .. |counter_roi_en| image:: /_static/counter_roi_en.png :scale: 80% .. |counter_roi_ru| image:: /_static/counter_roi_ru.png :scale: 80% Calibrate Counter for Distance Measurement ================================================ If :guilabel:`Distance measurement` is enabled, you should perform the counter calibration. For counter calibration: #. Ask a person to stand before the selected camera at full height. #. Ask a person to walk through the area visible by the camera, along which the distances will be calculated. To achieve the best quality, the person must walk on a flat surface. #. Enter the counter calibration timeframe (from 15s to 300s) and click :guilabel:`Calibrate counter`. If you need to calibrate the counter for several cameras, perform steps 1-3 for each camera selected in the :guilabel:`Cameras` field. If you are unsatisfied by the result, click :guilabel:`Delete calibration` and perform the calibration once more. Monitor Counter Operation ============================ To monitor the operation of counters, navigate to the :guilabel:`Counters` tab. |counters_monitor_en| .. |counters_monitor_en| image:: /_static/counters_monitor_en.png :scale: 50% .. |counters_monitor_ru| image:: /_static/counters_monitor_ru.png :scale: 50% Counter statuses: * Green: the counter is running without errors, or the number of errors doesn't pass the acceptable threshold. * Yellow: the number of errors exceeds the threshold. * Red: the number of errors is critical. * Grey: the counter is disabled. .. tip:: You can configure the yellow and red statuses based on the portion of failed counter records and change the time window duration between two consecutive checks of the counter health status. To do so, modify the following parameters in the ``/opt/findface-multi/configs/findface-multi-legacy/findface-multi-legacy.py`` configuration file: .. code:: sudo vi /opt/findface-multi/configs/findface-multi-legacy/findface-multi-legacy.py FFSECURITY = { ... # Counter health status config: # max percent of camera records with errors 'MAX_COUNTER_ERROR_RECORDS': {'yellow': 0.3, 'red': 0.5}, # time window for computing health status (in seconds) 'COUNTER_HEALTH_STATUS_TIME_WINDOW': 30, ... } Work with Counter Records ================================= Static screenshots taken by a counter, with the number of faces, bodies and vehicles in them, are saved as counter entries. If you have enabled the distance measurement, each record will also contain a minimum, average, and maximum detected distance in meters. If the counter is running with errors, the system will be creating blank records with an error message. To see the counter records, navigate to the :guilabel:`Counters` tab. Click on the counter. Navigate to the :guilabel:`Screenshots` tab. |counter_records_en| .. |counter_records_en| image:: /_static/counter_records_en.png :scale: 80% .. |counter_records_ru| image:: /_static/counter_records_ru.png :scale: 80% You can scale the screenshots by clicking on them. If distance measurement is enabled, the screenshot will contain boxes around bodies and the distance between them. To work with the counter list, use the following filters: * Name contains * Counter ID * Cameras * Camera groups * Distance To work with counter screenshots, use the following filters: * Cameras * Date and time * Count faces * Count bodies * Count vehicles * Counter entry ID * Minimum distance * Maximum distance * Average distance Set Webhook for Counter =================================== To take it up a notch, :ref:`configure a webhook ` for counter records with a specific number of faces, bodies and vehicles. .. seealso:: * :ref:`bodies` * :ref:`cars` * :ref:`webhooks` Configure Counters ================================ To configure counters, open the ``/opt/findface-multi/configs/findface-multi-legacy/findface-multi-legacy.py`` configuration file and modify the following parameters: * ``COUNTERS_DEDUP_OPTIONS``: a set of options that help avoid object duplication in multi-camera counters, i.e., the situation when the same object is counted on several cameras at the same time, leading to the overly increased counting result. Two options are available for each object type (``face,`` ``body``, ``car``): ``enabled`` - enables object deduplication, ``threshold`` - defines the minimum level of similarity between objects for the system to consider them duplicates. * ``COUNTERS_SAVE_FULLFRAME`` determines saving options of full frames in counters: ``always``, ``detect`` - only save if faces, bodies or vehicles have been detected, ``never``. * ``COUNTERS_FULLFRAME_JPEG_QUALITY``: JPEG quality of full frames. * ``COUNTERS_THUMBNAIL_JPEG_QUALITY``: JPEG quality of thumbnails. * ``COUNTERS_ROI_INTERSECTION_THRESHOLD``: required percentage of the rectangle around the object (a.k.a. ``bbox``) intersection with the region of interest defined for the counter. .. code:: sudo vi /opt/findface-multi/configs/findface-multi-legacy/findface-multi-legacy.py # deduplicate objects on multi-camera counters 'COUNTERS_DEDUP_OPTIONS': { 'face': { 'enabled': False, 'threshold': 0.714, # model: [mango_320] }, 'body': { 'enabled': False, 'threshold': 0.65, # model: [clio] }, 'car': { 'enabled': False, 'threshold': 0.65, # model: [alonso] }, }, # counters full frame saving options: # `always` - save always # `detect` - save only if faces or bodies have been detected # `never` - never save full frames 'COUNTERS_SAVE_FULLFRAME': 'always', 'COUNTERS_FULLFRAME_JPEG_QUALITY': 75, 'COUNTERS_THUMBNAIL_JPEG_QUALITY': 75, # required percentage of bbox intersection with ROI 'COUNTERS_ROI_INTERSECTION_THRESHOLD': 0.75, ... Be sure to restart the ``findface-multi-findface-multi-legacy-1`` container after making changes. .. code:: sudo docker container restart findface-multi-findface-multi-legacy-1