上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 109 下一页
摘要: 原文链接: 多视图几何笔记(二)射影变换 阅读全文
posted @ 2022-12-10 13:49 rainbow70626 阅读(35) 评论(0) 推荐(0)
摘要: 在通过二维像素坐标恢复三维坐标的过程中,经常出现这个齐次坐标系、尺度不变性的概念。这篇博客讲的比较好。 一、关于齐次坐标系的直观感受 在我们的世界里,两平行线是永远不会相交的,但是在投影空间里,两条平行线在无穷远处是相交的,如这个铁轨一样:在数学里,我们通过齐次变换来表示这种问题,齐次变换就是将一个 阅读全文
posted @ 2022-12-08 18:54 rainbow70626 阅读(290) 评论(0) 推荐(0)
摘要: 代码如下: // BasisMatrixCalculate.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <iostream> #include <vector> #include <opencv2/core/core.hpp> #incl 阅读全文
posted @ 2022-10-09 17:02 rainbow70626 阅读(116) 评论(0) 推荐(0)
摘要: 最近Opencv升级比较快,从2.4.0到2.4.1到2.4.2,使得我这个还在使用2.3.1的人很不好意思,而且听说新版本里添加了tbb并行功能,急着想用这些功能的我赶紧下了2.4.2。 按部就班的解压、设置c++目录(我使用的是vs2008)、设置环境变量......一系列的完成之后,想用一下s 阅读全文
posted @ 2022-10-07 21:57 rainbow70626 阅读(43) 评论(0) 推荐(0)
摘要: surf和sift算法都是在头文件#include <opencv2/features2d/features2d.hpp>中,但在新的opencv版本出来后,如果仍然使用这个头文件就会出现编译错误如下: 'SurfFeatureDetector' : is not a member of 'cv' 阅读全文
posted @ 2022-10-07 21:55 rainbow70626 阅读(153) 评论(0) 推荐(0)
摘要: 原文链接:Automatic Image Stitching with Accord.NET 阅读全文
posted @ 2022-09-21 23:40 rainbow70626 阅读(31) 评论(0) 推荐(0)
摘要: indHomography: 计算多个二维点对之间的最优单映射变换矩阵 H(3行x3列) ,使用最小均方误差或者RANSAC方法 函数功能:找到两个平面之间的转换矩阵。 Mat cv::findHomography ( InputArray srcPoints, InputArray dstPoin 阅读全文
posted @ 2022-09-16 19:07 rainbow70626 阅读(1499) 评论(0) 推荐(0)
摘要: opencv源代码注释 附上opencv三角测量函数的主要代码和注释 cvTriangulatePoints(CvMat* projMatr1, CvMat* projMatr2, CvMat* projPoints1, CvMat* projPoints2, CvMat* points4D) { 阅读全文
posted @ 2022-09-10 21:50 rainbow70626 阅读(1578) 评论(0) 推荐(0)
摘要: 代码示例: vs_Enterprise.exe --layout E:\VS2017LAYOUT --add Microsoft.VisualStudio.Workload.NetCoreTools --add Microsoft.VisualStudio.Workload.ManagedDeskt 阅读全文
posted @ 2022-09-09 19:33 rainbow70626 阅读(374) 评论(0) 推荐(0)
摘要: 有时我们在写程序时会从命令行中直接读入参数,形如: int main(int argc,char**argv){ //your code here return 0; } 其实在vc2010 IDE中可以直接实现,不必每次生成可执行文件后用 cmd来执行。 在项目菜单下选择项目属性 -> 配置属性 阅读全文
posted @ 2022-09-09 19:31 rainbow70626 阅读(214) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 109 下一页