Browse Source

//

private_deployment
xhxu 1 year ago
parent
commit
d8ca4ad714
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      suimangService/src/main/java/com/iformall/sm/AiDigitalAvatarHelper.java

+ 4
- 4
suimangService/src/main/java/com/iformall/sm/AiDigitalAvatarHelper.java View File

@@ -33,8 +33,8 @@ public class AiDigitalAvatarHelper {


public static AiCheckPhotoResult checkPhoto(AiCheckPhotoParam param) {
String response = HttpUtil.doAiVideoPost("http://nas.pucao.cn:2005/dec_face", JSONObject.toJSONString(param));
// String response = HttpUtil.doAiVideoPost(digital_avatar + "/dec_face", JSONObject.toJSONString(param));
// String response = HttpUtil.doAiVideoPost("http://nas.pucao.cn:2005/dec_face", JSONObject.toJSONString(param));
String response = HttpUtil.doAiVideoPost(digital_avatar + "/dec_face", JSONObject.toJSONString(param));
log.info("图片人脸检测 end response:" + response);
AiCheckPhotoResult result = new AiCheckPhotoResult();

@@ -70,8 +70,8 @@ public class AiDigitalAvatarHelper {
param.setCallback_url("https://phototest.metavatar.cc/C/callback/photo/speak");
// param.setCallback_url(callbackUrl + "/callback/photo/speak");
// log.info("生成照片start request:" + param.getBg_img());
String response = HttpUtil.doAiVideoPost("http://nas.pucao.cn:2005/make_face", JSONObject.toJSONString(param));
// String response = HttpUtil.doAiVideoPost(digital_avatar + "/make_face", JSONObject.toJSONString(param));
// String response = HttpUtil.doAiVideoPost("http://nas.pucao.cn:2005/make_face", JSONObject.toJSONString(param));
String response = HttpUtil.doAiVideoPost(digital_avatar + "/make_face", JSONObject.toJSONString(param));
log.info("生成照片end response:"+response);

DigitalAvatarResult result = new DigitalAvatarResult();


Loading…
Cancel
Save