登录
首页 » 算法 » 使用矩形点得到单应矩阵

使用矩形点得到单应矩阵

于 2022-04-22 发布 文件大小:1.53 kB
0 179
下载积分: 2 下载次数: 1

代码说明:

应用背景在世界坐标系中已知的矩形点,在摄像机图像中出现,得到了变换和逆变换。视觉工作室2010。m_homography相化学图谱学;的…m_homography。设定值(m_ptregion,350,600);…图片上的双= 100;双五= 200,/ /或点对图像双×,,,和,/ / / /,世界坐标;m_homography。cam2world(U,V,X,Y);…双U1,V1;m_homography。world2cam(x,y,U1,V1);关键技术四点在世界坐标如下:(0,0),(一,0),(A,B),(0,B)四点在摄像机坐标如下:(u0,v0),(U1,V1),(U2,V2),(U3,V3)然后,得到的变换矩阵是简单的。W = HX,W =(U,V,1)T,X =(x,y,1)Tx = w-1w ; ; ; ;  H1 H2 H3; ;H =  ;H4 H5  ; ;H6 ; ; ; ;H7 H8  ; ;H9h2y + H3 = H1X + U(h7x + h8y + H9)h4x + h5y + H6 = V(h7x + h8y + H9)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • vc++源代码,任意分布的随机数的产生,注意它的随机性
    vc++源代码,任意分布的随机数的产生,注意它的随机性-vc source code, arbitrary distribution of the random numbers generated, the attention of its randomness
    2023-07-20 21:55:03下载
    积分:1
  • 串行口升级子程序支持1
    串行口升级子程序支持1-4口的中断控制  -serial port upgrade 1-4 subroutine I support the Interrupt Control
    2022-11-21 09:15:03下载
    积分:1
  • 找到2d_maxima
    这个项目包含了CPP解决了2D-maxima的问题,你可以输入一个数组,这意味着一个SERIS离散点,一发现日最高点的2-D合作。    OFEN使用的agorithems是蛮力和分块,agorithem使用快速排序,从而让即将举办的x坐标点,用途比较y中两neiborhood点从位置后方前面。和agorithem的时间compexity是n日志(n)的。
    2022-08-10 14:28:22下载
    积分:1
  • 该程序用于产生任意均值和方差的随机数,程序中有注释
    该程序用于产生任意均值和方差的随机数,程序中有注释-The program used to generate arbitrary mean and variance of random numbers, program has Notes
    2023-03-03 22:40:04下载
    积分:1
  • 利用matlab编写的神经网络程序
    这是本人多年来学习神经网络的代码的一个总结,里面包括了具体的算例,以及对训练过程的详细解说,希望对别人有一定的帮助。
    2022-03-21 23:11:05下载
    积分:1
  • 我的SM3JAVA代码
    我 SM3 算法 Java 代码写在 2012.Include 调试程序和测试代码。
    2023-04-24 20:30:03下载
    积分:1
  • C#计
    using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.Runtime.InteropServices; using System.IO; namespace 计算器 { /// /// Form1 的摘要说明。 /// public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Label label1; private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button2; private System.Windows.Forms.Button button3; private System.Windows.Forms.Button button4; private System.Windows.Forms.Button button5; private System.Windows.Forms.Button button6; private System.Windows.Forms.Button button7; private System.Windows.Forms.Button button8; private System.Windows.Forms.Button button9; private System.Windows.Forms.Button button11; private System.Windows.For
    2023-01-30 17:15:03下载
    积分:1
  • ASN.1编码与解码过程的一种形式化描述.rar
    ASN.1编码与解码过程的一种形式化描述.rar-ASN. An encoding and decoding process of a formal description. Rar
    2023-09-04 14:15:03下载
    积分:1
  • 深度搜索 dfs
    深度优先遍历图的方法是,从图中某顶点v出发: (1)访问顶点v; (2)依次从v的未被访问的邻接点出发,对图进行深度优先遍历;直至图中和v有路径相通的顶点都被访问; (3)若此时图中尚有顶点未被访问,则从一个未被访问的顶点出发,重新进行深度优先遍历,直到图中所有顶点均被访问过为止。 当然,当人们刚刚掌握深度优先搜索的时候常常用它来走迷宫.
    2022-10-19 18:20:03下载
    积分:1
  • dtw.c
    在日常的生活中我们最经常使用的距离毫无疑问应该是欧式距离,但是对于一些特殊情况,欧氏距离存在着其很明显的缺陷,比如说时间序列,举个比较简单的例子,序列A:1,1,1,10,2,3,序列B:1,1,1,2,10,3,如果用欧氏距离,也就是distance[i][j]=(b[j]-a[i])*(b[j]-a[i])来计算的话,总的距离和应该是128,应该说这个距离是非常大的,而实际上这个序列的图像是十分相似的,这种情况下就有人开始考虑寻找新的时间序列距离的计算方法,然后提出了DTW算法,这种方法在语音识别,机器学习方便有着很重要的作用。 这个算法是基于动态规划(DP)的思想,解决了发音长短不一的模板匹配问题,简单来说,就是通过构建一个邻接矩阵,寻找最短路径和。 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-01-21 23:10:34下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载