上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: 运行别人现成的python环境的pip会报错 Fatal error in launcher: Unable to create process using '"d:\python3.7\python.exe" "E:\***\Python3.7\Scripts\pip.exe" list': ?? 阅读全文
posted @ 2022-03-22 19:21 小小灰迪 阅读(897) 评论(0) 推荐(0) 编辑
摘要: gedit ~/.bashrc export QTDIR=/home/lhw/Qt5.9.8/5.9.8/gcc_64 export PATH=$QTDIR/bin:$PATH export LD_PLUGINS_PATH=$QTDIR/plugins:$LD_PLUGINS_PATH export 阅读全文
posted @ 2022-03-16 00:10 小小灰迪 阅读(400) 评论(0) 推荐(0) 编辑
摘要: ** 恢复内容开始 ** https://zhuanlan.zhihu.com/p/140961253 sudo swapon --show df -h 文件系统 容量 已用 可用 已用% 挂载点 udev 7.7G 0 7.7G 0% /dev tmpfs 1.6G 2.3M 1.6G 1% /r 阅读全文
posted @ 2022-03-11 10:29 小小灰迪 阅读(1952) 评论(0) 推荐(0) 编辑
摘要: 源码下载 https://cmake.org/download/ cmake-3.21.4.tar.gz 解压 ./configure --qt-gui make -j12 sudo make install 阅读全文
posted @ 2022-03-09 11:01 小小灰迪 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 运行复制过来的python环境的pip包,出现这种错误 打开该pip文件 #!/your/python/path/python/bin/python # -*- coding: utf-8 -*- import re import sys from pip._internal.cli.main im 阅读全文
posted @ 2022-02-12 21:03 小小灰迪 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 三点顺序给三个点A,B,C的坐标,判断能否组成一个三角形;若能,判断A,B,C是顺时针给出的还是逆时针给出的? 利用矢量叉积判断是逆时针还是顺时针。三角形两边的矢量分别是:AB=(x2-x1,y2-y1), AC=(x3-x1,y3-y1) 则AB * AC=(x2-x1) * (y3-y1) - 阅读全文
posted @ 2022-01-21 22:40 小小灰迪 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Qt 设置QTableWidget表格不可被选中、不可编辑 参考 一、设置表格不可被选中 tableWidget->setSelectionMode(QAbstractItemView::NoSelection); 其它枚举值: QAbstractItemView::ExtendedSelectio 阅读全文
posted @ 2022-01-18 11:56 小小灰迪 阅读(552) 评论(0) 推荐(0) 编辑
摘要: std::vector<std::string> img_file_paths_temp; std::sort(img_file_paths_temp.begin(), img_file_paths_temp.end(), [&](std::string& img1, std::string& im 阅读全文
posted @ 2022-01-10 00:09 小小灰迪 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 鱼眼畸变 python opencv文档 void cv::fisheye::undistortPoints(InputArray distorted, OutputArray undistorted, InputArray K, InputArray D, InputArray R = noArr 阅读全文
posted @ 2022-01-05 23:10 小小灰迪 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 将np.float64转换成CV_64FC2格式 cv2.fisheye.undistortPoints 参考链接 # dist_keypt.shape=(64,2) dist_keypt = np.float64(dist_keypt[:,np.newaxis,:]) numpy增加元素 list 阅读全文
posted @ 2022-01-05 22:54 小小灰迪 阅读(83) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页