fbf3fdd69f0b8bfe971c1fd74399341a2b72ac9c
[platform/core/api/mediavision.git] / mv_machine_learning / object_detection / include / object_detection_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 __OBJECT_DETECTION_ADAPTER_H__
18 #define __OBJECT_DETECTION_ADAPTER_H__
19
20 #include <dlog.h>
21
22 #include "EngineConfig.h"
23 #include "itask.h"
24 #include "mobilenet_v1_ssd.h"
25 #include "mobilenet_v2_ssd.h"
26
27 namespace mediavision
28 {
29 namespace machine_learning
30 {
31 template<typename T, typename V> class ObjectDetectionAdapter : public mediavision::common::ITask<T, V>
32 {
33 private:
34         std::unique_ptr<ObjectDetection> _object_detection;
35         T _source;
36         ObjectDetectionTaskType _task_type {};
37
38 public:
39         ObjectDetectionAdapter();
40         ~ObjectDetectionAdapter();
41
42         void create(int type) override;
43
44         void configure() override;
45         void prepare() override;
46         void setInput(T &t) override;
47         void perform() override;
48         V &getOutput() override;
49 };
50
51 } // machine_learning
52 } // mediavision
53
54 #endif