From f42f56870c6201a876f025a423eb5540d7438e83 Mon Sep 17 00:00:00 2001 From: alexander Date: Fri, 16 Jul 2021 11:30:56 +0100 Subject: MLECO-2079 Adding the python KWS example Signed-off-by: Eanna O Cathain Change-Id: Ie1463aaeb5e3cade22df8f560ae99a8e1c4a9c17 --- python/pyarmnn/examples/tests/test_common_utils.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 python/pyarmnn/examples/tests/test_common_utils.py (limited to 'python/pyarmnn/examples/tests/test_common_utils.py') diff --git a/python/pyarmnn/examples/tests/test_common_utils.py b/python/pyarmnn/examples/tests/test_common_utils.py new file mode 100644 index 0000000000..28d68ea235 --- /dev/null +++ b/python/pyarmnn/examples/tests/test_common_utils.py @@ -0,0 +1,19 @@ +# Copyright © 2020 Arm Ltd and Contributors. All rights reserved. +# SPDX-License-Identifier: MIT + +import os + +from context import cv_utils +from context import utils + + +def test_get_source_encoding(test_data_folder): + video_file = os.path.join(test_data_folder, "Megamind.avi") + video, video_writer, frame_count = cv_utils.init_video_file_capture(video_file, "/tmp") + assert cv_utils.get_source_encoding_int(video) == 1145656920 + + +def test_read_existing_labels_file(test_data_folder): + label_file = os.path.join(test_data_folder, "labelmap.txt") + labels_map = utils.dict_labels(label_file) + assert labels_map is not None -- cgit v1.2.1