上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 94 下一页
摘要: yolov5训练识别人、反光衣、安全带、安全绳、安全帽 1、标注数据 2、整理数据 3、训练:修改:myvoc.yaml train: VOC_2022061401/train.txt val: VOC_2022061401/val.txt # number of classes nc: 5 # c 阅读全文
posted @ 2022-06-15 07:25 西北逍遥 阅读(574) 评论(1) 推荐(0) 编辑
摘要: yolov5训练日志 python train_20220613.py --batch-size 2 --epochs 220 --data ./data/myvoc.yaml --cfg ./models/yolov5m.yaml --workers 0 (wind_2021) F:\Pytorc 阅读全文
posted @ 2022-06-14 12:11 西北逍遥 阅读(85) 评论(0) 推荐(0) 编辑
摘要: QWindow #include <QWindow> Public Types enum AncestorMode { ExcludeTransients, IncludeTransients } enum Visibility { Windowed, Minimized, Maximized, F 阅读全文
posted @ 2022-06-13 22:01 西北逍遥 阅读(372) 评论(0) 推荐(0) 编辑
摘要: matplotlib动态图 matplotlib FuncAnimation import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation plt.style.use('fivethirtyeight') 阅读全文
posted @ 2022-06-12 15:20 西北逍遥 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 一时疏忽,直接在xshell远程桌面运行pyqt程序了,报了此错误 (wind_2022) admin-01@admin-01:~/Anaconda3/project_liao_20220523$ (wind_2022) admin-01@admin-01:~/Anaconda3/project_l 阅读全文
posted @ 2022-06-11 23:25 西北逍遥 阅读(4638) 评论(1) 推荐(0) 编辑
摘要: win10安装RedisDesktopManager 1、下载 redis-desktop-manager-0.8.8.384.exe 2、双击运行,打开安装界面,点击下一步 2、点击 I Agree 3、选择安装路径,点击 Install 4、等待安装进度走完,点击 下一步 5、点击Finish, 阅读全文
posted @ 2022-06-11 10:23 西北逍遥 阅读(1158) 评论(0) 推荐(0) 编辑
摘要: 注:如果电脑有安装360,安装redis前一定要关闭掉360!!! 1、下载 Redis-x64-5.0.14.1.msi 2、双击运行,打开安装启动界面 3、勾选accept,点击 Next 4、选择安装路径,点击下一步 5、设置端口,勾选添加到环境变量,点击下一步 6、设置最大内存,点击下一步 阅读全文
posted @ 2022-06-11 10:03 西北逍遥 阅读(609) 评论(0) 推荐(0) 编辑
摘要: yolov5训练表示识别模型日志记录 1、标注数据 2、整理数据 3、训练:修改:myvoc.yaml train: VOC_2022060901/train.txt val: VOC_2022060901/val.txt # number of classes nc: 1 # class name 阅读全文
posted @ 2022-06-10 06:54 西北逍遥 阅读(216) 评论(0) 推荐(0) 编辑
摘要: yolov5模型训练过程中显卡使用率查询——记录 vidia-smi (base) F:\> (base) F:\>nvidia-smi Thu Jun 9 14:02:16 2022 + + | NVIDIA-SMI 497.17 Driver Version: 497.17 CUDA Versi 阅读全文
posted @ 2022-06-09 14:06 西北逍遥 阅读(867) 评论(0) 推荐(0) 编辑
摘要: QMatrix4x4 #include <QMatrix4x4> Public Functions QMatrix4x4() QMatrix4x4(const float *values) QMatrix4x4(float m11, float m12, float m13, float m14, 阅读全文
posted @ 2022-06-09 12:50 西北逍遥 阅读(683) 评论(0) 推荐(0) 编辑
摘要: QMatrix #include <QMatrix> Public Functions QMatrix() QMatrix(qreal m11, qreal m12, qreal m21, qreal m22, qreal dx, qreal dy) QMatrix(QMatrix &&other) 阅读全文
posted @ 2022-06-08 22:22 西北逍遥 阅读(354) 评论(0) 推荐(0) 编辑
摘要: yolov5 python train_20220602.py --batch-size 2 --epochs 300 --data ./data/myvoc.yaml --cfg ./models/yolov5x.yaml --workers 0 --device 0,1 (wind_torch_ 阅读全文
posted @ 2022-06-07 19:39 西北逍遥 阅读(37) 评论(0) 推荐(0) 编辑
摘要: QString转 wchar_t wchar_t* QString2Wchar(QString qStr) { return (wchar_t*)reinterpret_cast<const wchar_t *>(qStr.utf16()); } ################### 阅读全文
posted @ 2022-06-06 11:15 西北逍遥 阅读(268) 评论(0) 推荐(0) 编辑
摘要: QHostInfo Header: #include <QHostInfo> Public Functions QHostInfo(int id = -1) QHostInfo(const QHostInfo &other) ~QHostInfo() QList<QHostAddress> addr 阅读全文
posted @ 2022-06-05 21:30 西北逍遥 阅读(125) 评论(0) 推荐(0) 编辑
摘要: yolov5 log (base) bim@bim-PowerEdge-R730:~$ nvidia-smi Fri Jun 3 16:45:39 2022 + + | NVIDIA-SMI 470.103.01 Driver Version: 470.103.01 CUDA Version: 11 阅读全文
posted @ 2022-06-04 14:30 西北逍遥 阅读(70) 评论(0) 推荐(0) 编辑
摘要: opencv调整图片曝光 def gamma_trans(img,gamma):#gamma函数处理 gamma_table=[np.power(x/255.0,gamma)*255.0 for x in range(256)]#建立映射表 gamma_table=np.round(np.array 阅读全文
posted @ 2022-06-03 23:10 西北逍遥 阅读(1455) 评论(0) 推荐(0) 编辑
摘要: yolov5训练日志 (wind_torch_2022) bim@bim-PowerEdge-R730:~/Pytorch_Project/yolov5_train_hat$ (wind_torch_2022) bim@bim-PowerEdge-R730:~/Pytorch_Project/yol 阅读全文
posted @ 2022-06-03 21:59 西北逍遥 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 训练日志 tesla p100 python train_20220602.py --batch-size 2 --epochs 300 --data ./data/myvoc.yaml --cfg ./models/yolov5m.yaml --workers 0 --decive 0,1 ### 阅读全文
posted @ 2022-06-02 19:56 西北逍遥 阅读(22) 评论(0) 推荐(0) 编辑
摘要: yolov5训练警告反光标检测模型日志 1、开始训练 python train_20220601.py --img-size 640 --batch-size 4 --epochs 300 --data ./data/myvoc.yaml --cfg ./models/yolov5m.yaml -- 阅读全文
posted @ 2022-06-01 23:10 西北逍遥 阅读(22) 评论(0) 推荐(0) 编辑
摘要: batch-size 为4时,显卡使用效率: (wind_2021) F:\Dataset> (wind_2021) F:\Dataset> (wind_2021) F:\Dataset>nvidia-smi Wed Jun 1 15:34:11 2022 + + | NVIDIA-SMI 497. 阅读全文
posted @ 2022-06-01 15:36 西北逍遥 阅读(138) 评论(0) 推荐(0) 编辑
摘要: threejs对象控制 threejs controls transform <!DOCTYPE html> <html lang="en"> <head> <title>three.js webgl - transform controls</title> <meta charset="utf-8 阅读全文
posted @ 2022-05-31 17:31 西北逍遥 阅读(209) 评论(0) 推荐(0) 编辑
摘要: threejs Matrix3 var matrix3_1 = new THREE.Matrix3(); var index1_new_x = t_matrix[0] * index1_x + t_matrix[3]*index1_y + t_matrix[6]*index1_z; var inde 阅读全文
posted @ 2022-05-30 19:57 西北逍遥 阅读(88) 评论(0) 推荐(0) 编辑
摘要: js保留4位小数 var v2_x = Math.round((new_x.x + Number.EPSILON) * 10000) / 10000; ################# 阅读全文
posted @ 2022-05-29 21:58 西北逍遥 阅读(1446) 评论(0) 推荐(0) 编辑
摘要: function() { class e extends r.ObjectGroup { constructor(e) { super(r.ObjectGroupType.VIEWSHED, { priority: 20 }), e = e || {}, this._position = new T 阅读全文
posted @ 2022-05-28 20:17 西北逍遥 阅读(29) 评论(0) 推荐(0) 编辑
摘要: threejs向量旋转 threejs一个向量绕另一个向量旋转 threejs向量变换 var v3 = new THREE.Vector3(0,1,1); var v1 = new THREE.Vector3(1,0,0); var v2 = new THREE.Vector3(1,1,0); v 阅读全文
posted @ 2022-05-27 20:47 西北逍遥 阅读(753) 评论(0) 推荐(0) 编辑
摘要: threejs求两个向量的夹角 var v1 = new THREE.Vector3(1,0,0); var v2 = new THREE.Vector3(0,1,0); var angle1 = v1.angleTo(v2); // var angle2 = v2.angleTo(v1); // 阅读全文
posted @ 2022-05-27 20:11 西北逍遥 阅读(953) 评论(0) 推荐(0) 编辑
摘要: SpringBootApplication cannot be resolved to a type 在maven仓库中删除 spring-boot-autoconfigure 目录,然后重新 maven- update project,错误消除 ####################### 阅读全文
posted @ 2022-05-27 09:46 西北逍遥 阅读(614) 评论(0) 推荐(0) 编辑
摘要: C++类型转换 C++ float转int float myFloat {3.14f}; int i1 {(int)myFloat}; int i2 {int(myFloat)}; int i3 {static_cast<int>(myFloat)}; ################## 阅读全文
posted @ 2022-05-26 15:53 西北逍遥 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 1 AngleSensorST Short(2byte) 相机与PC设备状态,内容如下。 h 0=ERR(例如相机与PC的连接失败) 1=OK(正常无错误) 2=ERR2(例如相机搜索不到目标) 3=ERR3(例如相机距离目标太近<0.5m) 4=ERR4(例如相机距离目标太远>20m) 5=ERR 阅读全文
posted @ 2022-05-25 23:43 西北逍遥 阅读(15) 评论(0) 推荐(0) 编辑
摘要: python的struct模块 FORMATC TYPEPYTHON TYPESTANDARD SIZENOTES x pad byte no value - - c char string of length 1 1 - b signed char integer 1 (3) B unsigned 阅读全文
posted @ 2022-05-25 10:00 西北逍遥 阅读(37) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 94 下一页