CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - corner.m

搜索资源列表

  1. harris.m

    0下载:
  2. 立体视觉的关键技术是解决对应问题,点特征常被用来做特征。HARRIS角点检测算子较有影响。用MATLAB编写的。-stereo vision technology is the key to solve the matching problem, point feature often used to do features. HARRIS corner detection operator more influential. MATLAB prepared.
  3. 所属分类:图形图象

    • 发布日期:2008-10-13
    • 文件大小:2360
    • 提供者:jxhappyqin
  1. harris-corner-detector.rar

    0下载:
  2. harris角点检测算法,用于图像拼接的配准,harris corner detection algorithm for image mosaic of the registration
  3. 所属分类:Special Effects

    • 发布日期:2017-03-22
    • 文件大小:433367
    • 提供者:夏前
  1. 08060009_HW3

    0下载:
  2. implementation of KLT CORNER DETECTOR
  3. 所属分类:matlab

    • 发布日期:2017-05-28
    • 文件大小:11128425
    • 提供者:rehmat
  1. m

    0下载:
  2. 右下角弹出提示框控件(Active-X Popup MsgBox)-The lower right corner of the pop-up box prompts controls (Active-X Popup MsgBox)
  3. 所属分类:.net

    • 发布日期:2017-03-29
    • 文件大小:41885
    • 提供者:cefriend
  1. triangulation_corner.m

    0下载:
  2. a MATLAB program which tries to correct situations in which a triangulation includes corner triangles, that is, triangles which have two sides on boundary
  3. 所属分类:matlab

    • 发布日期:2017-04-13
    • 文件大小:2669
    • 提供者:alice
  1. harris.m

    0下载:
  2. 图象的角点检测程序,我在硕士毕业论文中曾经采用它作为比较.-Image corner detection process, at my master' s thesis in that it once used as a comparison.
  3. 所属分类:Special Effects

    • 发布日期:2017-04-10
    • 文件大小:1512
    • 提供者:留云
  1. corner.m

    0下载:
  2. 另一种算法的图象角点检测程序,可同时检测边缘.-Another algorithm for image corner detection process, the edge can be detected simultaneously.
  3. 所属分类:Special Effects

    • 发布日期:2017-04-08
    • 文件大小:7336
    • 提供者:留云
  1. Scaramuzza_OCamCalib_v2.0

    1下载:
  2. 鱼眼镜头标定程序。国外一个学校的鱼眼镜头标定。含有标定图。可以自动提取角点并相机进行校正!-Fish-eye lens calibration procedures. Abroad, a school of fish-eye lens calibration. Containing calibration map. Can automatically extract the corner point and camera correction!
  3. 所属分类:Graph program

    • 发布日期:2014-05-29
    • 文件大小:5753550
    • 提供者:Sean
  1. harris.m

    0下载:
  2. Harris corner detetion
  3. 所属分类:matlab

    • 发布日期:2017-04-08
    • 文件大小:1950
    • 提供者:sudha
  1. corner

    1下载:
  2. 这是角点检测的程序,图像中所有凹凸点都可以检测到,并在二值图像上显示出来,效果不错。直接运行corner.m即可-Corner detection program, the result is good
  3. 所属分类:Special Effects

    • 发布日期:2017-04-08
    • 文件大小:31594
    • 提供者:robert
  1. harris.m

    0下载:
  2. Sample code for detecting Harris corners Input: im ... grayscale image topn ... how many features to detect Ouput: x,y ... feature co-ordinates, strength==Harris corner strength-Sample code for detecting Harris corners
  3. 所属分类:2D Graphic

    • 发布日期:2017-03-29
    • 文件大小:947
    • 提供者:yue hou
  1. migong

    0下载:
  2. 迷宫问题 一个迷宫可用上图所示方阵[m,n]表示,0表示能通过,1 表 示不能通过。现假设耗子从左上角[1,1]进入迷宫,编写算法,寻 求一条从右下角 [m,n] 出去的路径-Maze A maze of available shown on the square [m, n], 0 through a table Means you can not pass. It is assumed that the mouse from the upper left corner [
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1028
    • 提供者:yangyanqing
  1. Corner-Detector

    0下载:
  2. ACCV的一篇论文以及源代码,不是我写的只是搬运到这里而已,具体请访问论文中作者的网页。改进Harris的角点检测,主要改进在:1、是在加权模板选择了各向异性的模板代替了各向同性的高斯模板;2、选择使用多尺度滤波器对图像进行处理,使算法具有一定的多尺度特性。-This is paper with code,which published on ACCV.I m not the author of this paper.If want to know more,please vistor the
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:432005
    • 提供者:董潇健
  1. migonglaoshu

    0下载:
  2. 数据结构,迷宫老鼠问题求解 迷宫是一个矩形区域,它有一个入口和一个出口。在迷宫的内部包含不能穿越的墙或障碍。迷宫的入口在左上角,出口在右下角。假定用n*m的矩阵来描述迷宫,位置(1,1)表示入口,(n,m)表示出口,n和m分别代表迷宫的行数和列数。迷宫中的每个位置都可用其行号和列号来指定。在矩阵中,当且仅当在位置(i,j)处有一个障碍时其值为1,否则其值为零。(即0表示能通过,1 表示不能通过。)现假设老鼠从左上角[1,1]进入迷宫,编写算法,寻求一条从右下角[m,n] 出去的路径。 迷
  3. 所属分类:software engineering

    • 发布日期:2017-12-07
    • 文件大小:1726
    • 提供者:翁雪花
  1. cornerDetector.m

    0下载:
  2. Corner detector in matlab as the code detector CORNERS in the trucco book.
  3. 所属分类:matlab

    • 发布日期:2017-12-05
    • 文件大小:656
    • 提供者:h66
  1. Harris-corner

    0下载:
  2. Harris采用了一种新的角点判定方法。矩阵M的两个特征向量l1和l2与矩阵M的主曲率成正比。Harris利用l1, l2来表征变化最快和最慢的两个方向.若两个都很大就是角点,一个大一个小就是边缘,两个都小就是在变化缓慢的图像区域.-Harris adopted a new method of determining the corner. Matrix M of two feature vectors l1 and l2 with the matrix M is proportional to
  3. 所属分类:2D Graphic

    • 发布日期:2017-04-26
    • 文件大小:390574
    • 提供者:于木每
  1. matlab.m

    0下载:
  2. 给出了大金法,sift角点特征提取分水岭,阈值分割法对红外电力设备图像分割处理-Daikin method are given, corner sift feature extraction, threshold segmentation method for infrared image segmentation power equipment
  3. 所属分类:Special Effects

    • 发布日期:2017-04-29
    • 文件大小:9209
    • 提供者:李祥
  1. m.idc889.com

    0下载:
  2. 经典手机版公司企业网站源码安装说明 如果网站存放在根目录,就无需看下面的。直接上传即可 后台/admin 用户名:admin 密码:admin888 底部联系电话、客服qq修改方法 点击界面管理 》管理 里面有修改qq与电话的 首页简介也是在此处修改 幻灯图片 替换images中的01.jpg 02.jpg 03.jpg 【修改不生效,需点击右上角的[更新缓存]然后点击[生成管理的生成全站]-C
  3. 所属分类:WEB(ASP,PHP,...)

    • 发布日期:2017-05-20
    • 文件大小:5574081
    • 提供者:cn
  1. harris.m

    0下载:
  2. 检测图像角点特征,学习matlab应用程序,学习计算机视觉基础知识(Detection of image corner features)
  3. 所属分类:图形图像处理

    • 发布日期:2018-04-19
    • 文件大小:1024
    • 提供者:谢大海
  1. harris.m

    0下载:
  2. harris corner检测, 角点的检测(harris corner detection)
  3. 所属分类:其他

    • 发布日期:2018-05-02
    • 文件大小:1024
    • 提供者:yiyaoz
« 12 3 »
搜珍网 www.dssz.com