AnalyseFaced.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. package com.shanghaichengdi.downloadcenterserver.faced;
  2. import cn.hutool.http.HttpRequest;
  3. import cn.hutool.http.HttpUtil;
  4. import com.alibaba.fastjson.JSONArray;
  5. import com.alibaba.fastjson.JSONObject;
  6. import java.util.HashMap;
  7. import java.util.LinkedHashMap;
  8. import java.util.List;
  9. import java.util.Map;
  10. import java.util.Objects;
  11. import lombok.extern.slf4j.Slf4j;
  12. @Slf4j
  13. public class AnalyseFaced {
  14. private final static String SHIP_COVER = "http://172.16.58.199:5000/shipCover";
  15. private final static String BOAT_FLAG = "http://172.16.58.199:3003/boat_flag";
  16. private final static String LIFE_JACKET = "http://172.16.58.199:5003/lifejacket";
  17. private final static String DOWNLOAD_FILE_DIR = "/shipAnalysis/HDImages/";
  18. private final static String SHIP_COVER_ANALYSE_DIR = "/disk/shipCover/";
  19. private final static String BOAT_FLAG_ANALYSE_DIR = "/disk/shareFlag/";
  20. private final static String LIFE_JACKET_ANALYSE_DIR = "/disk/shareLifejacket/";
  21. private final static String GH_CLOUD_SERVER = "http://10.83.68.108:8090/ghjgBayonetDataShareApi/analyse/receive";
  22. private final static String GH_CLOUD_HISTORY_SERVER = "http://10.83.68.108:8090/ghjgBayonetDataShareApi/analyse/history/receive";
  23. public static String shipCoverAnalyse(String id, String filePath, String bayonetId, String distanceType) {
  24. HttpRequest post = HttpUtil.createPost(SHIP_COVER);
  25. Map<String, String> headers = new HashMap<>();
  26. headers.put("Content-Type", "application/json;charset=utf-8");
  27. post.addHeaders(headers);
  28. Map<String, String> param = new LinkedHashMap<>();
  29. param.put("file", DOWNLOAD_FILE_DIR + filePath);
  30. param.put("type", distanceType);
  31. String responseBody = post.body(JSONObject.toJSONString(param))
  32. .setReadTimeout(3600000)
  33. .execute()
  34. .body();
  35. // log.info("通用船舶货物识别完成,结果为:{}", responseBody);
  36. // 调用云上覆盖物/国旗接收接口
  37. JSONObject coverAnalyseResultData = JSONObject.parseObject(responseBody);
  38. JSONArray resultArray = (JSONArray) coverAnalyseResultData.get("result");
  39. JSONObject resultJsonObject = (JSONObject) resultArray.get(0);
  40. if (!Objects.isNull(resultJsonObject.get("class"))) {
  41. Map<String, Object> yunParam = new LinkedHashMap<>();
  42. yunParam.put("type", "覆盖物");
  43. yunParam.put("dir", SHIP_COVER_ANALYSE_DIR);
  44. yunParam.put("id", id);
  45. yunParam.put("data", responseBody);
  46. yunParam.put("bayonetId", bayonetId);
  47. String coverJsonString = JSONObject.toJSONString(yunParam);
  48. // log.info("覆盖物调用云上传参为:{}", coverJsonString);
  49. HttpRequest ghPost = HttpUtil.createPost(GH_CLOUD_SERVER);
  50. ghPost.addHeaders(headers);
  51. ghPost.body(coverJsonString)
  52. .setReadTimeout(3600000)
  53. .execute()
  54. .body();
  55. }
  56. return responseBody;
  57. }
  58. public static String shipCoverAnalyseHistory(String id, String filePath, String bayonetId,String passTime) {
  59. HttpRequest post = HttpUtil.createPost(SHIP_COVER);
  60. Map<String, String> headers = new HashMap<>();
  61. headers.put("Content-Type", "application/json;charset=utf-8");
  62. post.addHeaders(headers);
  63. Map<String, String> param = new LinkedHashMap<>();
  64. param.put("file", DOWNLOAD_FILE_DIR + filePath);
  65. String responseBody = post.body(JSONObject.toJSONString(param))
  66. .setReadTimeout(3600000)
  67. .execute()
  68. .body();
  69. // log.info("通用船舶货物识别完成,结果为:{}", responseBody);
  70. // 调用云上覆盖物/国旗接收接口
  71. JSONObject coverAnalyseResultData = JSONObject.parseObject(responseBody);
  72. JSONArray resultArray = (JSONArray) coverAnalyseResultData.get("result");
  73. JSONObject resultJsonObject = (JSONObject) resultArray.get(0);
  74. if (!Objects.isNull(resultJsonObject.get("class"))) {
  75. Map<String, Object> yunParam = new LinkedHashMap<>();
  76. yunParam.put("type", "覆盖物");
  77. yunParam.put("dir", SHIP_COVER_ANALYSE_DIR);
  78. yunParam.put("id", id);
  79. yunParam.put("passTime",passTime);
  80. yunParam.put("data", responseBody);
  81. yunParam.put("bayonetId", bayonetId);
  82. String coverJsonString = JSONObject.toJSONString(yunParam);
  83. // log.info("覆盖物调用云上传参为:{}", coverJsonString);
  84. HttpRequest ghPost = HttpUtil.createPost(GH_CLOUD_HISTORY_SERVER);
  85. ghPost.addHeaders(headers);
  86. ghPost.body(coverJsonString)
  87. .setReadTimeout(3600000)
  88. .execute()
  89. .body();
  90. }
  91. return responseBody;
  92. }
  93. public static String boatFlagAnalyse(String id, List<String> filePathList, String bayonetId) {
  94. String result = null;
  95. for (String filePath : filePathList) {
  96. HttpRequest post = HttpUtil.createPost(BOAT_FLAG);
  97. Map<String, String> headers = new HashMap<>();
  98. headers.put("Content-Type", "application/json;charset=utf-8");
  99. post.addHeaders(headers);
  100. Map<String, String> param = new LinkedHashMap<>();
  101. param.put("file", DOWNLOAD_FILE_DIR + filePath);
  102. String responseBody = post.body(JSONObject.toJSONString(param))
  103. .setReadTimeout(3600000)
  104. .execute()
  105. .body();
  106. JSONObject jsonObject = JSONObject.parseObject(responseBody);
  107. Boolean whetherHaveFlag = (Boolean) jsonObject.get("has_objects");
  108. if (whetherHaveFlag) {
  109. // log.info("当前编号:{} 船舶有国旗, 返回结果为:{}", id, responseBody);
  110. result = responseBody;
  111. break;
  112. } else {
  113. // 没有国旗的只保留全景图的分析结果
  114. String fullyImgResult = boatFlagAnalyse(id, filePathList.get(0));
  115. // log.warn("当前编号:{} 船舶没有国旗, 返回结果为:{}", id, responseBody);
  116. result = fullyImgResult;
  117. }
  118. }
  119. // log.info("国旗分析最终结果:{}", result);
  120. // 调用云上覆盖物/国旗接收接口
  121. Map<String, Object> yunParam = new LinkedHashMap<>();
  122. yunParam.put("type", "国旗");
  123. yunParam.put("dir", BOAT_FLAG_ANALYSE_DIR);
  124. yunParam.put("id", id);
  125. yunParam.put("data", result);
  126. yunParam.put("bayonetId", bayonetId);
  127. String flagJsonString = JSONObject.toJSONString(yunParam);
  128. // log.info("国旗调用云上传参为:{}", flagJsonString);
  129. HttpRequest ghPost = HttpUtil.createPost(GH_CLOUD_SERVER);
  130. Map<String, String> headers = new HashMap<>();
  131. headers.put("Content-Type", "application/json;charset=utf-8");
  132. ghPost.addHeaders(headers);
  133. ghPost.body(flagJsonString)
  134. .setReadTimeout(3600000)
  135. .execute()
  136. .body();
  137. return null;
  138. }
  139. public static String boatFlagAnalyseHistory(String id, List<String> filePathList, String bayonetId,String passTime) {
  140. String result = null;
  141. for (String filePath : filePathList) {
  142. HttpRequest post = HttpUtil.createPost(BOAT_FLAG);
  143. Map<String, String> headers = new HashMap<>();
  144. headers.put("Content-Type", "application/json;charset=utf-8");
  145. post.addHeaders(headers);
  146. Map<String, String> param = new LinkedHashMap<>();
  147. param.put("file", DOWNLOAD_FILE_DIR + filePath);
  148. String responseBody = post.body(JSONObject.toJSONString(param))
  149. .setReadTimeout(3600000)
  150. .execute()
  151. .body();
  152. JSONObject jsonObject = JSONObject.parseObject(responseBody);
  153. Boolean whetherHaveFlag = (Boolean) jsonObject.get("has_objects");
  154. if (whetherHaveFlag) {
  155. result = responseBody;
  156. break;
  157. } else {
  158. // 没有国旗的只保留全景图的分析结果
  159. String fullyImgResult = boatFlagAnalyse(id, filePathList.get(0));
  160. result = fullyImgResult;
  161. }
  162. }
  163. // 调用云上覆盖物/国旗接收接口
  164. Map<String, Object> yunParam = new LinkedHashMap<>();
  165. yunParam.put("type", "国旗");
  166. yunParam.put("dir", BOAT_FLAG_ANALYSE_DIR);
  167. yunParam.put("id", id);
  168. yunParam.put("passTime", passTime);
  169. yunParam.put("data", result);
  170. yunParam.put("bayonetId", bayonetId);
  171. String flagJsonString = JSONObject.toJSONString(yunParam);
  172. HttpRequest ghPost = HttpUtil.createPost(GH_CLOUD_HISTORY_SERVER);
  173. Map<String, String> headers = new HashMap<>();
  174. headers.put("Content-Type", "application/json;charset=utf-8");
  175. ghPost.addHeaders(headers);
  176. ghPost.body(flagJsonString)
  177. .setReadTimeout(3600000)
  178. .execute()
  179. .body();
  180. return null;
  181. }
  182. public static String boatFlagAnalyse(String id, String filePath) {
  183. HttpRequest post = HttpUtil.createPost(BOAT_FLAG);
  184. Map<String, String> headers = new HashMap<>();
  185. headers.put("Content-Type", "application/json;charset=utf-8");
  186. post.addHeaders(headers);
  187. Map<String, String> param = new LinkedHashMap<>();
  188. param.put("file", DOWNLOAD_FILE_DIR + filePath);
  189. return post.body(JSONObject.toJSONString(param))
  190. .setReadTimeout(3600000)
  191. .execute()
  192. .body();
  193. }
  194. public static String lifeJacketAnalyse(String id, List<String> filePathList, String bayonetId) {
  195. String result = null;
  196. HashMap<String,String> resultMap = new HashMap<>();
  197. for (String filePath : filePathList) {
  198. HttpRequest post = HttpUtil.createPost(LIFE_JACKET);
  199. Map<String, String> headers = new HashMap<>();
  200. headers.put("Content-Type", "application/json;charset=utf-8");
  201. post.addHeaders(headers);
  202. Map<String, String> param = new LinkedHashMap<>();
  203. param.put("file", DOWNLOAD_FILE_DIR + filePath);
  204. String responseBody = post.body(JSONObject.toJSONString(param))
  205. .setReadTimeout(3600000)
  206. .execute()
  207. .body();
  208. JSONObject jsonObject = JSONObject.parseObject(responseBody);
  209. List<Object> strings = JSONArray.parseArray(jsonObject.get("result").toString());
  210. JSONObject jsonObject1 = JSONObject.parseObject(strings.get(0).toString());
  211. if(String.valueOf(1).equals(jsonObject1.get("is_wear").toString())) {
  212. // 如果whetherWearLifejacket为1
  213. resultMap.put("1",responseBody);
  214. // result = responseBody;
  215. break;
  216. // 如果whetherWearLifejacket为0
  217. } else if (String.valueOf(0).equals(jsonObject1.get("is_wear").toString())) {
  218. resultMap.put("0",responseBody);
  219. // result = responseBody;
  220. } else {
  221. // 如果whetherWearLifejacket为空值(2)
  222. // 处理穿救生衣或无人时的分析结果
  223. resultMap.put("2",responseBody);
  224. // result = responseBody;
  225. }
  226. };
  227. //等级排序:1>0>2
  228. if (resultMap.get("2") != null){
  229. result = resultMap.get("2");
  230. }
  231. if (resultMap.get("0") != null){
  232. result = resultMap.get("0");
  233. }
  234. if (resultMap.get("1") != null) {
  235. result = resultMap.get("1");
  236. }
  237. // log.info("救生衣分析最终结果:{}", result);
  238. // 调用云上覆盖物/国旗/救生衣接收接口
  239. Map<String, Object> yunParam = new LinkedHashMap<>();
  240. yunParam.put("type", "救生衣");
  241. yunParam.put("dir", LIFE_JACKET_ANALYSE_DIR);
  242. yunParam.put("id", id);
  243. yunParam.put("data", result);
  244. yunParam.put("bayonetId", bayonetId);
  245. String lifejacketJsonString = JSONObject.toJSONString(yunParam);
  246. // log.info("救生衣调用云上传参为:{}", lifejacketJsonString);
  247. HttpRequest ghPost = HttpUtil.createPost(GH_CLOUD_SERVER);
  248. Map<String, String> headers = new HashMap<>();
  249. headers.put("Content-Type", "application/json;charset=utf-8");
  250. ghPost.addHeaders(headers);
  251. ghPost.body(lifejacketJsonString)
  252. .setReadTimeout(3600000)
  253. .execute()
  254. .body();
  255. return null;
  256. }
  257. }