mv_machine_learning: add postprocess support 87/284287/7
authorInki Dae <inki.dae@samsung.com>
Wed, 9 Nov 2022 08:56:20 +0000 (17:56 +0900)
committerInki Dae <inki.dae@samsung.com>
Thu, 17 Nov 2022 04:41:59 +0000 (13:41 +0900)
commit8bf89f8d7786e6c034d122c6658819fa929e9676
tree16ab89db455146664565d8a7ebc44e6b38ceffd8
parent8d7cc467acd798ac0eb9a486489c6bc963811516
mv_machine_learning: add postprocess support

[Issue type] new feature

Added postprocess support for objectron model of object detection Task
API group.

What this code refactoring does,
 - implement postprocess design for the new meta file approach.
 - add postprocess support to objectron model using this new design.

Change-Id: Ibcf0d9bfffd5dc411ff6b9f44107823021c7cfa6
Signed-off-by: Inki Dae <inki.dae@samsung.com>
18 files changed:
mv_machine_learning/inference/src/Inference.cpp
mv_machine_learning/meta/include/MetaParser.h
mv_machine_learning/meta/include/Postprocess.h [new file with mode: 0644]
mv_machine_learning/meta/include/PostprocessParser.h [new file with mode: 0644]
mv_machine_learning/meta/include/common.h
mv_machine_learning/meta/include/types.h
mv_machine_learning/meta/src/MetaParser.cpp
mv_machine_learning/meta/src/Postprocess.cpp [new file with mode: 0644]
mv_machine_learning/meta/src/PostprocessParser.cpp [new file with mode: 0644]
mv_machine_learning/meta/src/Preprocess.cpp
mv_machine_learning/object_detection/include/ObjectDetectionParser.h
mv_machine_learning/object_detection/include/object_detection.h
mv_machine_learning/object_detection/include/objectron.h
mv_machine_learning/object_detection/src/ObjectDetectionParser.cpp
mv_machine_learning/object_detection/src/mv_object_detection_3d_open.cpp
mv_machine_learning/object_detection/src/object_detection.cpp
mv_machine_learning/object_detection/src/object_detection_adapter.cpp
mv_machine_learning/object_detection/src/objectron.cpp