blob: 56629c8c5c3e99b118fb6827c0e7ecdafa595c15 [file] [log] [blame]
Michael Levit06fcf752022-01-12 11:53:46 +02001/*
2 * Copyright (c) 2022 Arm Limited. All rights reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17#ifndef OBJ_DET_HANDLER_HPP
18#define OBJ_DET_HANDLER_HPP
19
20#include "AppContext.hpp"
21
22namespace arm {
23namespace app {
24
25 /**
26 * @brief Handles the inference event.
27 * @param[in] ctx Pointer to the application context.
28 * @param[in] imgIndex Index to the image to run object detection.
29 * @param[in] runAll Flag to request classification of all the available images.
30 * @return true or false based on execution success.
31 **/
32 bool ObjectDetectionHandler(ApplicationContext& ctx, uint32_t imgIndex, bool runAll);
33
34} /* namespace app */
35} /* namespace arm */
36
37#endif /* OBJ_DET_HANDLER_HPP */