[Model] add style transfer model (#922)

* add style transfer model

* add examples for generation model

* add unit test

* add speed comparison

* add speed comparison

* add variable for constant

* add preprocessor and postprocessor

* add preprocessor and postprocessor

* fix

* fix according to review

Co-authored-by: DefTruth <31974251+DefTruth@users.noreply.github.com>
This commit is contained in:
chenjian
2023-01-03 10:47:08 +08:00
committed by GitHub
parent f72846c717
commit 87bcb5df21
23 changed files with 966 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ void BindTracking(pybind11::module& m);
void BindKeyPointDetection(pybind11::module& m);
void BindHeadPose(pybind11::module& m);
void BindSR(pybind11::module& m);
void BindGeneration(pybind11::module& m);
#ifdef ENABLE_VISION_VISUALIZE
void BindVisualize(pybind11::module& m);
#endif
@@ -213,6 +214,7 @@ void BindVision(pybind11::module& m) {
BindKeyPointDetection(m);
BindHeadPose(m);
BindSR(m);
BindGeneration(m);
#ifdef ENABLE_VISION_VISUALIZE
BindVisualize(m);
#endif