会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小小灰迪
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
···
13
下一页
2022年3月29日
c++ opencv对图像进行畸变矫正
摘要: 已知图像内参和畸变系数 // undistort // OpenCV camera model. // CamParam: fx, fy, cx, cy, k1, k2, p1, p2 void distort_image(const string & img_path, vector<double
阅读全文
posted @ 2022-03-29 21:54 小小灰迪
阅读(1653)
评论(0)
推荐(0)
2022年3月22日
Fatal error in launcher: Unable to create process using '"d:\python3.7\python.exe" "E:\***\Python3.7\Scripts\pip.exe" list': ???????????
摘要: 运行别人现成的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 小小灰迪
阅读(1074)
评论(0)
推荐(0)
2022年3月16日
ubuntu20 添加qt环境变量
摘要: 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 小小灰迪
阅读(429)
评论(0)
推荐(0)
2022年3月11日
ubuntu 20增加交换空间swap
摘要: ** 恢复内容开始 ** 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 小小灰迪
阅读(2043)
评论(0)
推荐(0)
2022年3月9日
源码安装cmake
摘要: 源码下载 https://cmake.org/download/ cmake-3.21.4.tar.gz 解压 ./configure --qt-gui make -j12 sudo make install
阅读全文
posted @ 2022-03-09 11:01 小小灰迪
阅读(106)
评论(0)
推荐(0)
2022年2月12日
bash: ./pip:/home/**/**/envs/**/bin/python3.8:解释器错误: 没有那个文件或目录
摘要: 运行复制过来的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 小小灰迪
阅读(532)
评论(0)
推荐(0)
2022年1月21日
三角形、多边形面积求法
摘要: 三点顺序给三个点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 小小灰迪
阅读(158)
评论(0)
推荐(0)
2022年1月18日
Qt 常用方法
摘要: Qt 设置QTableWidget表格不可被选中、不可编辑 参考 一、设置表格不可被选中 tableWidget->setSelectionMode(QAbstractItemView::NoSelection); 其它枚举值: QAbstractItemView::ExtendedSelectio
阅读全文
posted @ 2022-01-18 11:56 小小灰迪
阅读(719)
评论(0)
推荐(0)
2022年1月10日
C++ 小数文件名列表排序sort
摘要: 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 小小灰迪
阅读(323)
评论(0)
推荐(0)
2022年1月5日
python/C++ 去畸变
摘要: 鱼眼畸变 python opencv文档 void cv::fisheye::undistortPoints(InputArray distorted, OutputArray undistorted, InputArray K, InputArray D, InputArray R = noArr
阅读全文
posted @ 2022-01-05 23:10 小小灰迪
阅读(686)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
11
···
13
下一页
公告