CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 特征点 匹配

搜索资源列表

  1. AKAZE

    1下载:
  2. 在linux平台下完成对二维图像的特征点探测、抽取和匹配,利用RANSAC算法筛选剔除错误匹配点,显示AKAZE算法消耗时间和利用RANSAC算法后正确匹配率。 开发环境:Linux+GCC(In the Linux platform, the feature points detection, extraction and matching of two-dimensional images are completed. The RANSAC algorithm is used to elim
  3. 所属分类:图形图像处理

    • 发布日期:2017-12-21
    • 文件大小:3072
    • 提供者:Jules
  1. imagestitching

    1下载:
  2. 实现了图像的简单拼接。首先寻找特征点,然后计算描述子(特征向量),对寻找到的特征点进行匹配,并塞选匹配结果,然后计算透视 矩阵,将其中一幅图进行透视变换,然后将图片合成。对一些简单的图片比较有效。仅供参考学习。(Realize the simple stitching of the image. First, find the feature point, and then calculate the descr iptor (eigenvector), match the feature po
  3. 所属分类:OpenCV

    • 发布日期:2017-12-23
    • 文件大小:70070272
    • 提供者:具体
  1. 图像拼接技术

    0下载:
  2. 利用sift算法提取两张图像的特征点,利用ransac去除误匹配,最后将两张图片拼接在一起(Using sift algorithm to extract the two feature points of the image, the use of ransac to remove the wrong match, and finally the two pictures together)
  3. 所属分类:图形图像处理

    • 发布日期:2017-12-19
    • 文件大小:358400
    • 提供者:ruiruihaha
  1. jcvi-sift-1.03.tar

    0下载:
  2. sift算法是用来提取图像特征点的算法,性能优越,被广泛用于特征提取和图像匹配,自提出起,算法一直在更新,此为最新版本的sift算法,在matlab上测试可用。(The SIFT algorithm is used to extract the image feature points algorithm, superior performance, is widely used for feature extraction and image matching, since the propo
  3. 所属分类:图形图像处理

    • 发布日期:2017-12-23
    • 文件大小:17393664
    • 提供者:slllllll
  1. SIFT

    0下载:
  2. 可以对特征点进行提取,并对两幅图像的特征点进行匹配(The feature points can be extracted and the feature points of the two images can be matched)
  3. 所属分类:matlab例程

    • 发布日期:2017-12-23
    • 文件大小:385024
    • 提供者:波妞儿
  1. SURF_OPENCV

    0下载:
  2. 基于opencv实现的surf算法代码 最终输出左右影像特征点图、匹配连线图以及良好匹配点的坐标txt文件(Surf algorithm based on OpenCV)
  3. 所属分类:图形图像处理

    • 发布日期:2017-12-27
    • 文件大小:4149248
    • 提供者:sixpos
  1. correspondence_grouping

    0下载:
  2. 基于pcl 在复杂场景中识别三维模型,对三维模型进行特征点检测,匹配,识别(Recognition of 3D models in complex scenes based on PCL)
  3. 所属分类:虚拟/增强现实-VR/AR

    • 发布日期:2017-12-29
    • 文件大小:3072
    • 提供者:dfeddd
  1. test4

    0下载:
  2. 算法描述 SIFT特征不只具有尺度不变性,即使改变旋转角度,图像亮度或拍摄视角,仍然能够得到好的检测效果。整个算法分为以下几个部分: (1)构造尺度空间:DoG尺度空间 (2)检测DoG尺度空间极值点 (3)去除不好的特征点 (4)给特征点赋值一个128维的方向参数。每个关键点都包含三个信息:位置、尺度和方向。 (5)关键点描述子的生成: 首先将坐标轴旋转为关键点的方向,以确保旋转不变性。以关键点为中心取8×8的窗口。 (6)最后进行特征匹配。(Algorithm descr i
  3. 所属分类:图形图像处理

    • 发布日期:2017-12-30
    • 文件大小:1181696
    • 提供者:听雪楼
  1. SIFT-python

    1下载:
  2. l利用SIFT算法提取图像特征点,然后对图像进行匹配。(Extract the feature points of image and then match the images)
  3. 所属分类:图形图像处理

    • 发布日期:2018-01-06
    • 文件大小:7168
    • 提供者:weehaa
  1. Python实现聚类融合的目标跟踪算法

    2下载:
  2. Python实现目标跟踪算法,使用了模板匹配搭配光流法并使用聚类融合实现特征点分类聚合的算法。
  3. 所属分类:其它源码

  1. FasterSurf

    0下载:
  2. 一个图像拼接框架。切换注释与未注释代码可实现不同检测器与描述子的组合。默认使用SURF+BRIEF,通过预设重叠区域比例排除非重叠区域特征点的检测,提升特征点检测速度,减少误匹配。(An image stitching frame. The switching annotation and the non - annotated code can implement the combination of different detectors and descr iptors. Using SU
  3. 所属分类:OpenCV

    • 发布日期:2018-04-19
    • 文件大小:2048
    • 提供者:bitZhang
  1. PanoramaMaker-master

    2下载:
  2. 在机器视觉应用领域里特征检测和匹配是一个很重要的算法,比如图像配准、跟踪和目标检测。这个例子里,我们用基于特征的方法完成图像拼接。处理的方法是先用图像配准特征点。不同于单图像对配准,这里是多图像对的配准完成图像拼接。(In the field of machine vision application, feature detection and matching is a very important algorithm, such as image registration, trackin
  3. 所属分类:图形图像处理

    • 发布日期:2018-04-20
    • 文件大小:620544
    • 提供者:bbyron
  1. jiaozhun1

    1下载:
  2. 通过surf匹配特征点然后进行仿射变换实现图像配准。(using surf to match the two images)
  3. 所属分类:图形图像处理

    • 发布日期:2018-04-30
    • 文件大小:1024
    • 提供者:nkhgl
  1. SURF探测器拼接两张图像以创建全景的openCV实现

    0下载:
  2. 基于SURF的图像拼接,全景图像筛选特征点,进行匹配刷选转换(Image mosaic based on SURF panoramic image filtering feature points matching selection switch)
  3. 所属分类:OpenCV

    • 发布日期:2018-04-30
    • 文件大小:9830400
    • 提供者:小kkx
  1. sift-master

    0下载:
  2. 实现两幅图像基于sift特征的匹配,剔除误匹配点,实现精确的图像匹配(Matching two images based on SIFT features)
  3. 所属分类:图形图象

    • 发布日期:2018-05-02
    • 文件大小:13312
    • 提供者:hyx记忆
  1. SURF+brief

    0下载:
  2. 基于opencv库的条件下,实现SURF+brief算法的特征点的提取与匹配,直接复制粘贴即可(Under the condition of OpenCV library, we can extract and match the feature points of SURF+brief algorithm, and copy and paste directly.)
  3. 所属分类:OpenCV

  1. ImageMatch

    0下载:
  2. 提取特征点并匹配,有基于相关系数和最小二乘两种方法。(Extracting feature points and matching)
  3. 所属分类:图形图像处理

    • 发布日期:2018-05-04
    • 文件大小:10924032
    • 提供者:gaee
  1. 图像拼接技术

    0下载:
  2. 运用sift算法进行特征点的提取并实现特征点的匹配与融合(SIFT algorithm is used to extract feature points and realize matching and fusion of feature points.)
  3. 所属分类:图形图像处理

    • 发布日期:2018-05-07
    • 文件大小:357376
    • 提供者:Leslie ??Love
  1. 视觉SLAM

    1下载:
  2. 图像处理图像视觉三维重建点的特征与匹配线的特征(Characteristics of image 3D reconstruction points and matching line characteristics in image processing)
  3. 所属分类:图形图像处理

    • 发布日期:2019-11-27
    • 文件大小:22953984
    • 提供者:小小的明明
  1. RIFT_demo1

    2下载:
  2. 本代码实现了rift算法对特征点进行匹配(This code implements rift algorithm to match feature points)
  3. 所属分类:其他

    • 发布日期:2021-01-29
    • 文件大小:1389568
    • 提供者:浅挚轻旻
« 1 2 ... 23 24 25 26 27 2829 30 31 32 »
搜珍网 www.dssz.com