|
@@ -20,6 +20,7 @@ public class AnalyseFaced {
|
|
|
private final static String SHIP_COVER_ANALYSE_DIR = "/disk/shipCover/";
|
|
|
private final static String BOAT_FLAG_ANALYSE_DIR = "/disk/shareFlag/";
|
|
|
private final static String GH_CLOUD_SERVER = "http://10.83.68.108:8090/ghjgBayonetDataShareApi/analyse/receive";
|
|
|
+ private final static String GH_CLOUD_HISTORY_SERVER = "http://10.83.68.108:8090/ghjgBayonetDataShareApi/analyse/history/receive";
|
|
|
|
|
|
|
|
|
public static String shipCoverAnalyse(String id, String filePath, String bayonetId) {
|
|
@@ -57,6 +58,42 @@ public class AnalyseFaced {
|
|
|
return responseBody;
|
|
|
}
|
|
|
|
|
|
+ public static String shipCoverAnalyseHistory(String id, String filePath, String bayonetId,String passTime) {
|
|
|
+ HttpRequest post = HttpUtil.createPost(SHIP_COVER);
|
|
|
+ Map<String, String> headers = new HashMap<>();
|
|
|
+ headers.put("Content-Type", "application/json;charset=utf-8");
|
|
|
+ post.addHeaders(headers);
|
|
|
+ Map<String, String> param = new LinkedHashMap<>();
|
|
|
+ param.put("file", DOWNLOAD_FILE_DIR + filePath);
|
|
|
+ String responseBody = post.body(JSONObject.toJSONString(param))
|
|
|
+ .setReadTimeout(3600000)
|
|
|
+ .execute()
|
|
|
+ .body();
|
|
|
+// 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("passTime",passTime);
|
|
|
+ yunParam.put("data", responseBody);
|
|
|
+ yunParam.put("bayonetId", bayonetId);
|
|
|
+ String coverJsonString = JSONObject.toJSONString(yunParam);
|
|
|
+// log.info("覆盖物调用云上传参为:{}", coverJsonString);
|
|
|
+ HttpRequest ghPost = HttpUtil.createPost(GH_CLOUD_HISTORY_SERVER);
|
|
|
+ ghPost.addHeaders(headers);
|
|
|
+ ghPost.body(coverJsonString)
|
|
|
+ .setReadTimeout(3600000)
|
|
|
+ .execute()
|
|
|
+ .body();
|
|
|
+ }
|
|
|
+ return responseBody;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
public static String boatFlagAnalyse(String id, List<String> filePathList, String bayonetId) {
|
|
|
String result = null;
|
|
@@ -106,6 +143,51 @@ public class AnalyseFaced {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ public static String boatFlagAnalyseHistory(String id, List<String> filePathList, String bayonetId,String passTime) {
|
|
|
+ String result = null;
|
|
|
+ for (String filePath : filePathList) {
|
|
|
+ HttpRequest post = HttpUtil.createPost(BOAT_FLAG);
|
|
|
+ Map<String, String> headers = new HashMap<>();
|
|
|
+ headers.put("Content-Type", "application/json;charset=utf-8");
|
|
|
+ post.addHeaders(headers);
|
|
|
+ Map<String, String> param = new LinkedHashMap<>();
|
|
|
+ param.put("file", DOWNLOAD_FILE_DIR + filePath);
|
|
|
+ String responseBody = post.body(JSONObject.toJSONString(param))
|
|
|
+ .setReadTimeout(3600000)
|
|
|
+ .execute()
|
|
|
+ .body();
|
|
|
+ JSONObject jsonObject = JSONObject.parseObject(responseBody);
|
|
|
+ Boolean whetherHaveFlag = (Boolean) jsonObject.get("has_objects");
|
|
|
+ if (whetherHaveFlag) {
|
|
|
+ result = responseBody;
|
|
|
+ break;
|
|
|
+ } else {
|
|
|
+ // 没有国旗的只保留全景图的分析结果
|
|
|
+ String fullyImgResult = boatFlagAnalyse(id, filePathList.get(0));
|
|
|
+ result = fullyImgResult;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 调用云上覆盖物/国旗接收接口
|
|
|
+ Map<String, Object> yunParam = new LinkedHashMap<>();
|
|
|
+ yunParam.put("type", "国旗");
|
|
|
+ yunParam.put("dir", BOAT_FLAG_ANALYSE_DIR);
|
|
|
+ yunParam.put("id", id);
|
|
|
+ yunParam.put("passTime", passTime);
|
|
|
+ yunParam.put("data", result);
|
|
|
+ yunParam.put("bayonetId", bayonetId);
|
|
|
+ String flagJsonString = JSONObject.toJSONString(yunParam);
|
|
|
+ HttpRequest ghPost = HttpUtil.createPost(GH_CLOUD_HISTORY_SERVER);
|
|
|
+ Map<String, String> headers = new HashMap<>();
|
|
|
+ headers.put("Content-Type", "application/json;charset=utf-8");
|
|
|
+ ghPost.addHeaders(headers);
|
|
|
+ ghPost.body(flagJsonString)
|
|
|
+ .setReadTimeout(3600000)
|
|
|
+ .execute()
|
|
|
+ .body();
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
public static String boatFlagAnalyse(String id, String filePath) {
|
|
|
HttpRequest post = HttpUtil.createPost(BOAT_FLAG);
|
|
|
Map<String, String> headers = new HashMap<>();
|