上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 55 下一页

2024年5月24日

摘要: 推荐这个高精度口: import json import types from tencentcloud.common import credential from tencentcloud.common.profile.client_profile import ClientProfile fro 阅读全文
posted @ 2024-05-24 15:04 张博的博客 阅读(37) 评论(0) 推荐(0) 编辑

2024年5月23日

摘要: import json with open ('ocr结构化输出/10000.json') as f: #调用的高精度腾旭ocr tmp=f.read() tengxunjieguo=json.loads(tmp) 别使用json.load, 经常爆编码错误.!!!!!!!!!!!!!!!!!!使用 阅读全文
posted @ 2024-05-23 07:18 张博的博客 阅读(14) 评论(0) 推荐(0) 编辑

2024年5月22日

摘要: ![image](https://img2024.cnblogs.com/blog/1311058/202405/1311058-20240522104354908-251167285.png) 阅读全文
posted @ 2024-05-22 10:43 张博的博客 阅读(6) 评论(0) 推荐(0) 编辑

2024年5月21日

摘要: 复杂度O(1) #计算两个线段之间的最短距离: #暴力遍历两边所有点求点之间距离最小速度N方. import cv2,math def jiajiao(line1, line2): line1with_x_axis=math.atan((-line1[3]+line1[1])/(line1[2]-l 阅读全文
posted @ 2024-05-21 17:46 张博的博客 阅读(33) 评论(0) 推荐(0) 编辑

2024年5月20日

摘要: #aaa是cv.read图片. img = aaaa.copy() gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY) ret, binary = cv2.threshold(gray, 0, 255, cv2.THRESH_BINARY + cv2.THRESH 阅读全文
posted @ 2024-05-20 20:22 张博的博客 阅读(10) 评论(0) 推荐(0) 编辑

2024年5月19日

摘要: http://www.mj141319.imotor.com/viewthread.php?tid=2706&extra=page%3D1 阅读全文
posted @ 2024-05-19 23:35 张博的博客 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 因网络中断或其他原因,有时候服务器上留下较多无用的vscode-server进程,占用内存资源 可以采用如下命令kill进程 ps uxa | grep .vscode-server | awk '{print $2}' | xargs kill -9 阅读全文
posted @ 2024-05-19 22:28 张博的博客 阅读(318) 评论(0) 推荐(0) 编辑
摘要: import pandas as pd s = pd.Series(['dsafasdf','3333333333333', '23423', 'sdafasdfasdf']) def yasuo(x): return ['...' for i in x] aaaa=pd.DataFrame([[' 阅读全文
posted @ 2024-05-19 20:16 张博的博客 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 也就是算出绝对路径传进去. import os wenjian='/'.join(os.path.abspath(__file__).split('/')[:-2])+'/' with open(wenjian+"meddata.json", "r") as f: med_data=json.loa 阅读全文
posted @ 2024-05-19 07:53 张博的博客 阅读(5) 评论(0) 推荐(0) 编辑

2024年5月15日

摘要: ps aux --sort=-%mem 阅读全文
posted @ 2024-05-15 19:02 张博的博客 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 55 下一页

导航