c63c38481662177a82862c1e35673d4ad670650b
[platform/core/api/mediavision.git] / mv_machine_learning / face_recognition / include / face_recognition_adapter.h
1 /**
2  * Copyright (c) 2022 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __FACE_RECOGNITION_ADAPTER_H__
18 #define __FACE_RECOGNITION_ADAPTER_H__
19
20 #include <dlog.h>
21
22 #include "EngineConfig.h"
23 #include "itask.h"
24 #include "face_recognition.h"
25
26 namespace mediavision
27 {
28 namespace machine_learning
29 {
30 template<typename T, typename V> class FaceRecognitionAdapter : public mediavision::common::ITask<T, V>
31 {
32 private:
33         std::unique_ptr<FaceRecognition> _face_recognition;
34         T _source {};
35         std::unique_ptr<MediaVision::Common::EngineConfig> _config;
36
37 public:
38         FaceRecognitionAdapter();
39         ~FaceRecognitionAdapter();
40
41         std::unique_ptr<MediaVision::Common::EngineConfig> &getConfig()
42         {
43                 return _config;
44         }
45
46         void create(int type) override;
47         void configure() override;
48         void prepare() override;
49         void setInput(T &t) override;
50         void perform() override;
51         V &getOutput() override;
52 };
53
54 } // machine_learning
55 } // mediavision
56
57 #endif