diff --git a/README.md b/README.md index 5297b9d..543f756 100644 --- a/README.md +++ b/README.md @@ -174,6 +174,7 @@ and execute it from there. |[stop sign violation detection](https://colab.research.google.com/github/DeGirum/PySDKExamples/blob/main/examples/applications/stop_sign_violation_detection.ipynb)|Stop sign violation detection using object detection, object tracking, zone counting, line cross counting, and event detection.| |[person age gender detection](https://colab.research.google.com/github/DeGirum/PySDKExamples/blob/main/examples/applications/person_age_gender_detection.ipynb)|Person detection followed by object tracking, zone presence detection, age detection, and gender classification with result averaging among all occurrences of detected person in the zone.| |[car wrong direction detection](https://colab.research.google.com/github/DeGirum/PySDKExamples/blob/main/examples/applications/car_wrong_direction_detection.ipynb)|Detect a car going in the wrong direction using object detection, object tracking, line cross counting, and event detection. When an event is detected, the notification is sent to the notification service of your choice and a video clip around that event is uploaded to S3-compatible storage of your choice.| +|[parking management](https://colab.research.google.com/github/DeGirum/PySDKExamples/blob/main/examples/applications/parking_management.ipynb)|Monitor a parking lot's occupancy using object detection and zone intrusion detection in a video. Zones defined for parking spaces are checked for occupancy and counted, and the video is annotated with occupancy/vacancy counts.| ## Full List of Variables in `env.ini` Configuration File diff --git a/tests/reference/parking_management_6.1.png b/tests/reference/parking_management_6.1.png new file mode 100644 index 0000000..5758b10 Binary files /dev/null and b/tests/reference/parking_management_6.1.png differ diff --git a/tests/test_notebooks.py b/tests/test_notebooks.py index 7fb669b..419725d 100644 --- a/tests/test_notebooks.py +++ b/tests/test_notebooks.py @@ -67,6 +67,7 @@ ("applications/stop_sign_violation_detection.ipynb", "Masked.mp4", [3], []), ("applications/person_age_gender_detection.ipynb", "Masked.mp4", {4:2}, []), ("applications/car_wrong_direction_detection.ipynb", "TrafficHD_short.mp4", [3], []), + ("applications/parking_management.ipynb", "TrafficHD_short.mp4", [6], []), ] # _imageless_notebooks is a list of notebooks without an image cell output