blob: b1d68cea95f1a53910c52bcac50300a600dfda9d [file] [log] [blame]
Richard Burtonc20be972022-04-19 17:01:08 +01001/*
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 VWW_PROCESSING_HPP
18#define VWW_PROCESSING_HPP
19
20#include "BaseProcessing.hpp"
21#include "Model.hpp"
22#include "Classifier.hpp"
23
24namespace arm {
25namespace app {
26
27 /**
28 * @brief Pre-processing class for Visual Wake Word use case.
29 * Implements methods declared by BasePreProcess and anything else needed
30 * to populate input tensors ready for inference.
31 */
32 class VisualWakeWordPreProcess : public BasePreProcess {
33
34 public:
35 /**
36 * @brief Constructor
37 * @param[in] model Pointer to the the Image classification Model object.
38 **/
39 explicit VisualWakeWordPreProcess(Model* model);
40
41 /**
42 * @brief Should perform pre-processing of 'raw' input image data and load it into
43 * TFLite Micro input tensors ready for inference
44 * @param[in] input Pointer to the data that pre-processing will work on.
45 * @param[in] inputSize Size of the input data.
46 * @return true if successful, false otherwise.
47 **/
48 bool DoPreProcess(const void* input, size_t inputSize) override;
49 };
50
51 /**
52 * @brief Post-processing class for Visual Wake Word use case.
53 * Implements methods declared by BasePostProcess and anything else needed
54 * to populate result vector.
55 */
56 class VisualWakeWordPostProcess : public BasePostProcess {
57
58 private:
59 Classifier& m_vwwClassifier;
60 const std::vector<std::string>& m_labels;
61 std::vector<ClassificationResult>& m_results;
62
63 public:
64 /**
65 * @brief Constructor
66 * @param[in] classifier Classifier object used to get top N results from classification.
67 * @param[in] model Pointer to the VWW classification Model object.
68 * @param[in] labels Vector of string labels to identify each output of the model.
69 * @param[out] results Vector of classification results to store decoded outputs.
70 **/
71 VisualWakeWordPostProcess(Classifier& classifier, Model* model,
72 const std::vector<std::string>& labels,
73 std::vector<ClassificationResult>& results);
74
75 /**
76 * @brief Should perform post-processing of the result of inference then
77 * populate classification result data for any later use.
78 * @return true if successful, false otherwise.
79 **/
80 bool DoPostProcess() override;
81 };
82
83} /* namespace app */
84} /* namespace arm */
85
86#endif /* VWW_PROCESSING_HPP */