获取所有姿势变换的pose

This commit is contained in:
2025-04-08 18:05:49 +08:00
parent 0e7c07b3b5
commit 6250e763c3
4 changed files with 24 additions and 3 deletions

View File

@@ -137,6 +137,11 @@ public class GenerateController {
return Response.success(sketchReconstruction);
}
@ApiOperation(value = "获取pose transfer的所有pose")
@GetMapping("/getAllPose")
public Response<List<String>> getAllPose(){
return Response.success(generateService.getAllPose());
}