搜索资源列表
whiteblackpoint
- 黑白点的匹配贪心算法 设平面上分布着n个白点和n个黑点,每个点用一对坐标(x, y)表示。一个黑点b=(xb,yb)支配一个白点w=(xw, yw)当且仅当xb>=xw和yb>=yw。若黑点b支配白点w,则黑点b和白点w可匹配(可形成一个匹配对)。在一个黑点最多只能与一个白点匹配,一个白点最多只能与一个黑点匹配的前提下,求n个白点和n个黑点的最大匹配对数。-black and white point matching greedy algorithm based on the d
heibaidian
- 设平面上分布着n个白点和n个黑点,每个点用一对坐标(x, y)表示。一个黑点b=(xb,yb)支配一个白点w=(xw, yw)当且仅当xb>=xw和yb>=yw。若黑点b支配白点w,则黑点b和白点w可匹配(可形成一个匹配对)。在一个黑点最多只能与一个白点匹配,一个白点最多只能与一个黑点匹配的前提下,求n个白点和n个黑点的最大匹配对数。
twoview_reconstruction
- 基于matlab的三维重建代码,提取两幅图片的匹配点-Based on three-dimensional reconstruction of the matlab code, extract the two images match point
epiloar
- 灰度匹配的第一步,可以找到若干个预匹配点-Gray to match the first step, you can find a number of pre-match point
imageprocessing
- 计算机图像视觉匹配程序,将两张图像的相似点坐标点读出-to display the location of the most similar points
homework
- 双目视觉三维重建程序,输入左右相机匹配点对矩阵,自动计算投影矩阵,并输出射影空间下的三维点坐标-Binocular vision three-dimensional reconstruction program, enter the matching points on the matrix around the camera to automatically calculate the projection matrix, and output under the three-dimensio
xunleixiazaipipei
- 影像匹配 利用NSCT进行立体影像匹配,输入待匹配点的行列坐标,匹配窗口、搜索窗口的大小,像对的核线参数,输出同名点的行列坐标,及画有同名点的右影像-image matching
Calculate_F_matrix
- 立体视觉 输入匹配点坐标,计算基础矩阵,含多种方法-Computer Vision, Calculate the foundation matrix by various methods
matchfinal
- 在VC环境下实现指纹识别,输入一幅图像(库中存在的)会匹配出对应的图像。包括预处理(二值化、分割、均衡、去噪、增强、细化等),特征值提取,即为提取端点和分叉点坐标,特征匹配,最后输出对应的指纹编号。-In the VC environment realize fingerprint recognition, input an image (library existing) will match the corresponding image. Including pretreatment (b
HNSSCODE
- -提供的主要执行Hierarchichal匹配算法在纸张由Yago appera迪兹说,女性生殖器Salvi,罗伯特·马蒂和琼马蒂。执行的一个例子是: 。/ laserScanNet nameFile1 nameFile2 4 128 1 0.9 0.01 - 7 你可以找到足够的文件在数据子目录(纯文本文件的点坐标的每一组用空格分开,每点一行(三坐标))。 代码结构 代码试图是自说明的,包括(一些)的评论。编程一直保持尽可能简单所以你不会找到模板。然而,您将发现许多许多参数,所
xunleixiazaipipei
- 影像匹配 利用NSCT进行立体影像匹配,输入待匹配点的行列坐标,匹配窗口、搜索窗口的大小,像对的核线参数,输出同名点的行列坐标,及画有同名点的右影像-image matching
acad2000
- === 命令说明====== zq--上一缩放zoom p zd--动态缩放zoom d ze--范围缩放zoom z z--zoom v--移动move c--复制copy q--平移pan t--偏移offset tt--镜像mirror rt--旋转rotate dss--距离dist aa--圆circle g--直线line gg--多段线pline dt--单行文本dtext r--放弃
RS--tie-points-matching
- 影像特征提取与同名点匹配,读取图像,在窗口中显示,提取特征点(“+”表示),匹配同名像点(“+”表示),列表显示各特征点和匹配点的像素坐标位置-Image feature point extraction and matching tie points,Read image displayed in the window, extracts feature points ("+" indication), the same name as the matching point ("+" indi
RANSAC算法去除误匹配点
- ransac消除错配matlab代码。运行通过,输入两个点集的坐标、迭代次数、阈值参数,输出正确匹配点集坐标。
SURFandRANSAC
- 本程序的功能是基于opencv库,用SURF提取特征,并保存描述子,再用随机抽样一致性算法剔除错误的匹配点,保存匹配好的点坐标,效果可以,你也可以换成SIFT或ORB来看效果。-This procedure is the function of feature extraction using SURF, and save the descr iptor matching points and random consistency algorithm to eliminate errors, s
C#提取特征点并进行图像匹配
- 建立在Moravec算子基础上提取特征点后与另外一幅图像进行匹配计算,并输出特征点对应的匹配点像素坐标(Based on the Moravec operator, the feature points are extracted and matched with another image, and the matching pixel coordinates corresponding to the feature points are output)
SURF_OPENCV
- 基于opencv实现的surf算法代码 最终输出左右影像特征点图、匹配连线图以及良好匹配点的坐标txt文件(Surf algorithm based on OpenCV)
匹配
- 在两张影像间,给定其中一张影像上某些点的坐标,实现在另一张影像上同名点的匹配。(Matching points of the same image between two images)
Source code
- 在opencv上实现双目测距主要步骤是: 1.双目校正和标定,获得摄像头的参数矩阵: 进行标定得出俩摄像头的参数矩阵 cvStereoRectify 执行双目校正 initUndistortRectifyMap 分别生成两个图像校正所需的像素映射矩阵 cvremap 分别对两个图像进行校正 2.立体匹配,获得视差图: stereoBM生成视差图 预处理: 图像归一化,减少亮度差别,增强纹理 匹配过程: 滑动sad窗口,沿着水平线进行匹配搜索,由于校正后左右图片平行,左图
C#图像同名像点提取
- 使用基于相关系数的影像匹配测度算法,从两幅数字影像中自动匹配50个以上的同名像点。使用窗体界面、控件编程;在设计的界面窗口中显示两幅图像、在图像中显示所匹配出的同名像点 (+),并列表显示各个同名像点的像素坐标。(Using image matching measure algorithm based on correlation coefficient, more than 50 homonymous points are automatically matched from two digi