From 84e5b38f7e3f00b10f3118dc28a7aad3701875bd Mon Sep 17 00:00:00 2001 From: boydrotgans Date: Thu, 5 Mar 2020 16:28:00 +0100 Subject: [PATCH] DensePose model support --- orx-runway/src/main/kotlin/Presets.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/orx-runway/src/main/kotlin/Presets.kt b/orx-runway/src/main/kotlin/Presets.kt index 43285fe0..2547ea8d 100644 --- a/orx-runway/src/main/kotlin/Presets.kt +++ b/orx-runway/src/main/kotlin/Presets.kt @@ -17,6 +17,11 @@ class BigBiGANQuery(@SerializedName("input_image") val inputImage: String) class BigBiGANResult(@SerializedName("output_image") val outputImage: String) +// -- DensePose +class DensePoseQuery(@SerializedName("input") val input: String) + +class DensePoseResult(@SerializedName("output") val output: String) + // -- SPADE-COCO class SpadeCocoRequest(val semantic_map: String)