摘要:
推荐这个高精度口: import json import types from tencentcloud.common import credential from tencentcloud.common.profile.client_profile import ClientProfile fro 阅读全文
摘要:
import json with open ('ocr结构化输出/10000.json') as f: #调用的高精度腾旭ocr tmp=f.read() tengxunjieguo=json.loads(tmp) 别使用json.load, 经常爆编码错误.!!!!!!!!!!!!!!!!!!使用 阅读全文
摘要:
![image](https://img2024.cnblogs.com/blog/1311058/202405/1311058-20240522104354908-251167285.png) 阅读全文
摘要:
复杂度O(1) #计算两个线段之间的最短距离: #暴力遍历两边所有点求点之间距离最小速度N方. import cv2,math def jiajiao(line1, line2): line1with_x_axis=math.atan((-line1[3]+line1[1])/(line1[2]-l 阅读全文
摘要:
#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 阅读全文
摘要:
http://www.mj141319.imotor.com/viewthread.php?tid=2706&extra=page%3D1 阅读全文
摘要:
因网络中断或其他原因,有时候服务器上留下较多无用的vscode-server进程,占用内存资源 可以采用如下命令kill进程 ps uxa | grep .vscode-server | awk '{print $2}' | xargs kill -9 阅读全文
摘要:
import pandas as pd s = pd.Series(['dsafasdf','3333333333333', '23423', 'sdafasdfasdf']) def yasuo(x): return ['...' for i in x] aaaa=pd.DataFrame([[' 阅读全文
摘要:
也就是算出绝对路径传进去. import os wenjian='/'.join(os.path.abspath(__file__).split('/')[:-2])+'/' with open(wenjian+"meddata.json", "r") as f: med_data=json.loa 阅读全文