From 06fcf7502b5c9b0e30ac06acfa25aa914d936500 Mon Sep 17 00:00:00 2001 From: Michael Levit Date: Wed, 12 Jan 2022 11:53:46 +0200 Subject: Face detection demo from Emza Visual Sense Signed-off-by: Michael Levit michaell@emza-vs.com Change-Id: I7958b05b5dbe9a785e0f8a241b716c17a9ca976f --- .../object_detection/ObjectDetectionUCTest.cc | 135 +++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 tests/use_case/object_detection/ObjectDetectionUCTest.cc (limited to 'tests/use_case/object_detection/ObjectDetectionUCTest.cc') diff --git a/tests/use_case/object_detection/ObjectDetectionUCTest.cc b/tests/use_case/object_detection/ObjectDetectionUCTest.cc new file mode 100644 index 0000000..0a0486e --- /dev/null +++ b/tests/use_case/object_detection/ObjectDetectionUCTest.cc @@ -0,0 +1,135 @@ +/* + * Copyright (c) 2022 Arm Limited. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +#include "DetectionResult.hpp" +//include "Detector.hpp" +#include "hal.h" +#include "YoloFastestModel.hpp" +#include "UseCaseHandler.hpp" +#include "UseCaseCommonUtils.hpp" + +#include + +TEST_CASE("Model info") +{ +printf("Entering Model info \n"); + /* Model wrapper object. */ + arm::app::YoloFastestModel model; + + /* Load the model. */ + REQUIRE(model.Init()); + + /* Instantiate application context. */ + arm::app::ApplicationContext caseContext; + + caseContext.Set("model", model); + + REQUIRE(model.ShowModelInfoHandler()); +} + + +TEST_CASE("Inference by index") +{ +printf("Entering Inference by index \n"); + hal_platform platform; + data_acq_module data_acq; + data_psn_module data_psn; + platform_timer timer; + + /* Initialise the HAL and platform. */ + hal_init(&platform, &data_acq, &data_psn, &timer); + hal_platform_init(&platform); + + /* Model wrapper object. */ + arm::app::YoloFastestModel model; + + /* Load the model. */ + REQUIRE(model.Init()); + + /* Instantiate application context. */ + arm::app::ApplicationContext caseContext; + + arm::app::Profiler profiler{&platform, "object_detection"}; + caseContext.Set("profiler", profiler); + caseContext.Set("platform", platform); + caseContext.Set("model", model); + caseContext.Set("imgIndex", 0); + + REQUIRE(arm::app::ObjectDetectionHandler(caseContext, 0, false)); + + auto results = caseContext.Get>("results"); + +} + + +TEST_CASE("Inference run all images") +{ + printf("Entering Inference run all images \n"); + hal_platform platform; + data_acq_module data_acq; + data_psn_module data_psn; + platform_timer timer; + + /* Initialise the HAL and platform. */ + hal_init(&platform, &data_acq, &data_psn, &timer); + hal_platform_init(&platform); + + /* Model wrapper object. */ + arm::app::YoloFastestModel model; + + /* Load the model. */ + REQUIRE(model.Init()); + + /* Instantiate application context. */ + arm::app::ApplicationContext caseContext; + + arm::app::Profiler profiler{&platform, "object_detection"}; + caseContext.Set("profiler", profiler); + caseContext.Set("platform", platform); + caseContext.Set("model", model); + caseContext.Set("imgIndex", 0); + + REQUIRE(arm::app::ObjectDetectionHandler(caseContext, 0, true)); + +} + + +TEST_CASE("List all images") +{ +printf("Entering List all images \n"); + hal_platform platform; + data_acq_module data_acq; + data_psn_module data_psn; + platform_timer timer; + + /* Initialise the HAL and platform. */ + hal_init(&platform, &data_acq, &data_psn, &timer); + hal_platform_init(&platform); + + /* Model wrapper object. */ + arm::app::YoloFastestModel model; + + /* Load the model. */ + REQUIRE(model.Init()); + + /* Instantiate application context. */ + arm::app::ApplicationContext caseContext; + + caseContext.Set("platform", platform); + caseContext.Set("model", model); + + REQUIRE(arm::app::ListFilesHandler(caseContext)); +} -- cgit v1.2.1