上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 1.准备模型、标签、配置 github地址: https://github.com/AlexeyAB/darknet 下载yolov4.weights 下载cfg/coco.names 下载cfg/yolov4.cfg 2.新建一个项目 3.main.py import cv2 import ran 阅读全文
posted @ 2022-01-20 16:21 缘故为何 阅读(463) 评论(0) 推荐(0) 编辑
摘要: import java.util.regex.Matcher; import java.util.regex.Pattern; /** * 驼峰转换工具 */ public class HumpUtil { private static Pattern linePattern = Pattern.c 阅读全文
posted @ 2022-01-18 10:56 缘故为何 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 1.执行计划 EXPLAIN SELECT * FROM t2 LEFT JOIN t1 ON t1.bill_num = t2.bill_num 这里出现了Using where; Using join buffer (Block Nested Loop) 50w数据查询了一两分钟没有查询出来,到 阅读全文
posted @ 2021-12-17 10:02 缘故为何 阅读(1914) 评论(0) 推荐(0) 编辑
摘要: 1.下载tesseract https://digi.bib.uni-mannheim.de/tesseract/ 2.配置环境变量 path D:\Program Files (x86)\Tesseract-OCR TESSDATA_PREFIX变量名 D:\Program Files (x86) 阅读全文
posted @ 2021-12-09 10:46 缘故为何 阅读(126) 评论(0) 推荐(0) 编辑
摘要: import org.hibernate.bytecode.enhance.spi.LazyPropertyInitializer; import org.hibernate.engine.spi.SessionImplementor; import org.hibernate.event.inte 阅读全文
posted @ 2021-11-22 19:52 缘故为何 阅读(655) 评论(0) 推荐(0) 编辑
摘要: import com.oigit.imsapi.common.WebInterceptor; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Confi 阅读全文
posted @ 2021-11-22 19:49 缘故为何 阅读(1661) 评论(0) 推荐(0) 编辑
摘要: (将如TEST_TB_KKK_LLLL 转换为 testTbKkkLlll) public static Map<String, Object> zh(Map<String,Object> map) { HashMap<String, Object> newMap = new HashMap<Str 阅读全文
posted @ 2021-09-24 16:24 缘故为何 阅读(722) 评论(0) 推荐(0) 编辑
摘要: yml配置文件 robot: list: - name: robot1 url: ws://ip/client file: http://ip/file - name: robot2 url: ws://ip/client file: http://ip/file - name: robot3 ur 阅读全文
posted @ 2021-06-23 11:35 缘故为何 阅读(969) 评论(0) 推荐(0) 编辑
摘要: stages: - build build: stage: build only: - dev2.0 script: - mvn clean package - scp -r target/xxx.jar root@ip:/home/xxx-api/ - ssh root@ip "superviso 阅读全文
posted @ 2021-05-26 11:01 缘故为何 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1.分页查询 public Page<User> page(int pageNo, int pageSize, User user) { Sort sort = new Sort(Sort.Direction.DESC,"createTime"); //创建时间降序排序 Pageable pagea 阅读全文
posted @ 2021-03-18 11:12 缘故为何 阅读(612) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页