上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页
摘要: Ubuntu 安装 cmake: 转: https://www.cnblogs.com/lihw-study/p/15661675.htm 历史版本:https://cmake.org/files/ 阅读全文
posted @ 2022-05-08 17:39 量子与太极 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 如何编写一个Makefile文件(手把手的教你) 转: https://blog.csdn.net/heng000000/article/details/120930239 如何新建一个工程并编写好Makefile.txt ,最后编译运行工程: https://blog.csdn.net/weixi 阅读全文
posted @ 2022-05-07 16:15 量子与太极 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 转:https://blog.csdn.net/m0_53302175/article/details/120658069 阅读全文
posted @ 2022-05-07 15:59 量子与太极 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1、准备Ubuntu16.04的iso文件,使用网易的镜像源Ubuntu16.04镜像下载地址地址:http://mirrors.163.com/ubuntu-releases/16.04/如图1所示选择ubuntu-16.04.07-desktop-arm64.iso 其他下载地址: 中科大源 h 阅读全文
posted @ 2022-05-04 10:01 量子与太极 阅读(109) 评论(2) 推荐(0) 编辑
摘要: 单应性矩阵与相机内外参之间的关系 标定:已知世界坐标系平面内的三维坐标和像素坐标,求解内参和外参; 本质矩阵和基本矩阵:已知内参和两幅图像中对应点的坐标,通过对极约束(八点法,尺度等价性,齐次坐标)求解相机的运动R和t(用到RANSAC); 单应矩阵:根据同一平面上的点在不同图像上的坐标,得到对应的 阅读全文
posted @ 2022-04-14 17:40 量子与太极 阅读(1642) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-08 09:38 量子与太极 阅读(46) 评论(0) 推荐(0) 编辑
摘要: Opencv循环顺序读取图片: 1 for (int i = 0; i <= 19; i++) 2 { 3 Mat InputImage; 4 string filename = "./bird4/bird_" + to_string(i) + ".bmp"; 5 InputImage=imread 阅读全文
posted @ 2022-04-07 11:12 量子与太极 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 【二值图认知】: OpenCV中threshold()得到的二值图其实是0、255(设定值)这两个值的图,而不是0、1的图。 0、1图是真正意义上的二值图。在矩阵运算时(比如点乘),推荐用0、1的二值图。OpenCV应该是隐蔽地把0、255归一化到了0、1。 0、1图有Halcon中Region的感 阅读全文
posted @ 2022-04-02 11:37 量子与太极 阅读(82) 评论(0) 推荐(0) 编辑
摘要: C++: void distanceTransform(InputArray src, OutputArray dst, int distanceType, int maskSize) 参数详解: InputArray src:输入的图像,一般为二值图像 OutputArray dst:输出的图像 阅读全文
posted @ 2022-04-01 16:54 量子与太极 阅读(53) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-03-30 19:46 量子与太极 阅读(89) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页