blob: 7476ed8a34063f6e34d385d80a9dbcafcccf5190 [file] [log] [blame]
Éanna Ó Catháin8f958872021-09-15 09:32:30 +01001/*
2 * Copyright (c) 2021 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 VISUAL_WAKE_WORD_HANDLER_HPP
18#define VISUAL_WAKE_WORD_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 classify.
29 * @param[in] runAll Flag to request classification of the available images.
30 * @return true or false based on execution success.
31 **/
32 bool ClassifyImageHandler(ApplicationContext &ctx, uint32_t imgIndex, bool runAll);
33
34} /* namespace app */
35} /* namespace arm */
36
37#endif /* VISUAL_WAKE_WORD_HANDLER_HPP */