|
@@ -2,11 +2,13 @@ package com.shanghaichengdi.downloadcenterserver.faced;
|
|
|
|
|
|
import cn.hutool.http.HttpRequest;
|
|
|
import cn.hutool.http.HttpUtil;
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.LinkedHashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
+import java.util.Objects;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
@Slf4j
|
|
@@ -20,7 +22,7 @@ public class AnalyseFaced {
|
|
|
private final static String GH_CLOUD_SERVER = "http://10.83.68.108:8090/ghjgBayonetDataShareApi/analyse/receive";
|
|
|
|
|
|
|
|
|
- public static String shipCoverAnalyse(String id, String filePath) {
|
|
|
+ public static String shipCoverAnalyse(String id, String filePath, String bayonetId) {
|
|
|
HttpRequest post = HttpUtil.createPost(SHIP_COVER);
|
|
|
Map<String, String> headers = new HashMap<>();
|
|
|
headers.put("Content-Type", "application/json;charset=utf-8");
|
|
@@ -31,12 +33,26 @@ public class AnalyseFaced {
|
|
|
.setReadTimeout(3600000)
|
|
|
.execute()
|
|
|
.body();
|
|
|
- log.info("通用船舶货物识别完成,结果为:{}", responseBody);
|
|
|
+// log.info("通用船舶货物识别完成,结果为:{}", responseBody);
|
|
|
+ // 调用云上覆盖物/国旗接收接口
|
|
|
+ JSONObject coverAnalyseResultData = JSONObject.parseObject(responseBody);
|
|
|
+ JSONArray resultArray = (JSONArray) coverAnalyseResultData.get("result");
|
|
|
+ JSONObject resultJsonObject = (JSONObject) resultArray.get(0);
|
|
|
+ if (!Objects.isNull(resultJsonObject.get("class"))) {
|
|
|
+ Map<String, Object> yunParam = new LinkedHashMap<>();
|
|
|
+ yunParam.put("type", "覆盖物");
|
|
|
+ yunParam.put("dir", SHIP_COVER_ANALYSE_DIR);
|
|
|
+ yunParam.put("id", id);
|
|
|
+ yunParam.put("data", responseBody);
|
|
|
+ yunParam.put("bayonetId", bayonetId);
|
|
|
+ String coverJsonString = JSONObject.toJSONString(yunParam);
|
|
|
+ log.info("覆盖物调用云上传参为:{}", coverJsonString);
|
|
|
+ }
|
|
|
return responseBody;
|
|
|
}
|
|
|
|
|
|
|
|
|
- public static String boatFlagAnalyse(String id, List<String> filePathList) {
|
|
|
+ public static String boatFlagAnalyse(String id, List<String> filePathList, String bayonetId) {
|
|
|
String result = null;
|
|
|
for (String filePath : filePathList) {
|
|
|
HttpRequest post = HttpUtil.createPost(BOAT_FLAG);
|
|
@@ -62,7 +78,16 @@ public class AnalyseFaced {
|
|
|
result = fullyImgResult;
|
|
|
}
|
|
|
}
|
|
|
- log.info("国旗分析最终结果:{}", result);
|
|
|
+// log.info("国旗分析最终结果:{}", result);
|
|
|
+ // 调用云上覆盖物/国旗接收接口
|
|
|
+ Map<String, Object> yunParam = new LinkedHashMap<>();
|
|
|
+ yunParam.put("type", "国旗");
|
|
|
+ yunParam.put("dir", BOAT_FLAG_ANALYSE_DIR);
|
|
|
+ yunParam.put("id", id);
|
|
|
+ yunParam.put("data", result);
|
|
|
+ yunParam.put("bayonetId", bayonetId);
|
|
|
+ String coverJsonString = JSONObject.toJSONString(yunParam);
|
|
|
+ log.info("国旗调用云上传参为:{}", coverJsonString);
|
|
|
return null;
|
|
|
}
|
|
|
|