CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - log 边缘检测

搜索资源列表

  1. log算子边缘检测源码及文档说明

    1下载:
  2. LOG算子边缘检测源码及文档说明-LOG Operator edge detection and source documents note
  3. 所属分类:图形/文字识别

    • 发布日期:2008-10-13
    • 文件大小:499366
    • 提供者:薛全
  1. log边缘检测

    0下载:
  2. 边缘检测是图像处理和计算机视觉中的基本问题,边缘检测的目的是标识数字图像中亮度变化明显的点。图像属性中的显著变化通常反映了属性的重要事件和变化。 这些包括(i)深度上的不连续、(ii)表面方向不连续、(iii)物质属性变化和(iv)场景照明变化。 边缘检测是图像处理和计算机视觉中,尤其是特征提取中的一个研究领域。 图像边缘检测大幅度地减少了数据量,并且剔除了可以认为不相关的信息,保留了图像重要的结构属性。有许多方法用于边缘检测,它们的绝大部分可以划分为两类:基于查找一类和基于零穿越的一类。基于
  3. 所属分类:源码下载

  1. 利用roberts、log、canny等算子实现图像边缘检测的MATLAB源代码

    1下载:
  2. 利用roberts、log、canny等算子实现图像边缘检测的MATLAB源代码,The use of roberts, log, canny operator, such as edge detection to achieve the MATLAB source code
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2016-01-25
    • 文件大小:2663
    • 提供者:佟健
  1. edge-detect-algorithm-comparis

    1下载:
  2. 边缘检测算法的比较,有susan算子,log算子,prewitt算子,Comparison of edge detection algorithm, there is susan operator, log operator, prewitt operator
  3. 所属分类:Special Effects

    • 发布日期:2015-10-26
    • 文件大小:609
    • 提供者:lh
  1. hough

    0下载:
  2. vc++6.0实现的hough直线检测算法和log边缘检测算法。-vc++ 6.0 achieved hough line detection algorithm and log edge detection algorithm.
  3. 所属分类:Special Effects

    • 发布日期:2017-03-23
    • 文件大小:66549
    • 提供者:孙宇
  1. MatlabRidgeDetection

    0下载:
  2. Matlab多种图像边缘检测方法 1、用Prewitt算子检测图像的边缘 2、用不同σ值的LoG算子检测图像的边缘 3、用Canny算子检测图像的边缘 4、图像的阈值分割 5、用水线阈值法分割图像 6、对矩阵进行四叉树分解 7、将图像分为文字和非文字的两个类别 8、形态学梯度检测二值图像的边缘 9、形态学实例——从PCB图像中删除所有电流线,仅保留芯片对象-Matlab a variety of image edge detection method 1, u
  3. 所属分类:matlab

    • 发布日期:2017-03-31
    • 文件大小:8662
    • 提供者:
  1. 627

    0下载:
  2. 关于边缘检测各种算法的比较研究,包括roberts,sobel,prewitt,LOG,canny等五种-Edge detection algorithms on the comparative studies, including roberts, sobel, prewitt, LOG, canny and other five
  3. 所属分类:matlab

    • 发布日期:2017-04-05
    • 文件大小:3383
    • 提供者:李甜甜
  1. Robert

    0下载:
  2. 实现并比较不同梯度边缘检测方法(普通梯度、Robert、Sobel、Prewitt、Laplace、LOG和Canny) -Implementation and compare the different gradient edge detection method (general gradient, Robert, Sobel, Prewitt, Laplace, LOG, and Canny)
  3. 所属分类:Graph program

    • 发布日期:2017-03-27
    • 文件大小:50513
    • 提供者:印象小七
  1. 边缘检测算子对比

    0下载:
  2. 边缘检测中,不同算子处理结果对比 含sobel、roberts、prewitt、log、canny等
  3. 所属分类:matlab例程

  1. fifteen

    0下载:
  2. 第十五章 图像分析 15.1 边缘检测 15.1.1 微分算子 15.1.2 Log算子 15.1.3 Canny 算子 15.2 四叉树分解 15.2.1 四叉树分解 15.2.2 四叉树 MATLAB 函数 -Chapter XV 15.1 edge detection image analysis 15.1.1 Differential Operators 15.1.2 Log Operator 15.1.3 Canny operator 15.2
  3. 所属分类:Special Effects

    • 发布日期:2017-03-30
    • 文件大小:2830
    • 提供者:王万国
  1. Log

    0下载:
  2. VC编程实现 LOG算子的亚像素边缘检测-VC Programming LOG operator sub-pixel edge detection
  3. 所属分类:Special Effects

    • 发布日期:2017-03-24
    • 文件大小:181635
    • 提供者:xiaoyang
  1. log

    0下载:
  2. 应用log算法进行图像的边缘检测,log算法是一种基于灰度值的二阶导数来进行边缘检测的,通过检测零点来进行边缘检测-Application log algorithm for image edge detection, log-based algorithm is a gray value of the second derivative for edge detection, by detecting zero for edge detection
  3. 所属分类:Graph Recognize

    • 发布日期:2017-03-22
    • 文件大小:1675
    • 提供者:zhangzhang
  1. compare_of_edge_detect_methods

    0下载:
  2. 讨论和比较了几种常用的边缘检测算子。梯度 算子计算简单 ,但精度不高 ,只能检测出图象大致的轮廓 ,而对于比较细的边缘可能会忽略。Prewitt 和Sobel算子比 Roberts 效果要好一些。LOG 滤波器和 Canny算子的检测效果优于梯度算子 ,能够检测出图象较细的边缘部分。不同的系统 ,针对不同的环境条件和要求 ,选择合适的算子来对图象进行边缘检测。-Discussion and comparison of several commonly used edge detection
  3. 所属分类:Graph Recognize

    • 发布日期:2017-04-17
    • 文件大小:156571
    • 提供者:liujia
  1. 基于三次B样条的边缘检测

    1下载:
  2. 这是基于三次B样条的边缘检测算法,与传统算法canny,robel,Log等算法进行仿真比较,仿真效果优于canny算子,注释详细
  3. 所属分类:matlab例程

  1. 边缘检测

    1下载:
  2. 包含有所有传统图像加有高斯噪声和椒盐噪声边缘检测matlab程序,亲测可用,有canny,sobel,prewitt,roberts,log等算子
  3. 所属分类:图形图象

  1. LOG

    0下载:
  2. 这是一个MATLAB LOG边缘检测算子的程序(MATLAB LOG Edge detection operator)
  3. 所属分类:matlab例程

    • 发布日期:2018-01-02
    • 文件大小:1024
    • 提供者:完美将至
  1. 基于4种不同算子的边缘检测运算

    2下载:
  2. 本程序采用了robbert,sobel,LoG,prewitt四种算子对同一副图像进行边缘检测,以此查看不同效果(This procedure uses Robbert, Sobel, LoG, Prewitt four kinds of edge detection operator on the same image, to view the different effect)
  3. 所属分类:图形图像处理

    • 发布日期:2018-01-08
    • 文件大小:182272
    • 提供者:huyuwang
  1. 边缘检测

    1下载:
  2. 包括canny,sobel,log等边缘检测的改进算法,使用效果良好(Including improved edge detection algorithms such as canny, sobel, log and so on, the application effect is good.)
  3. 所属分类:图形图像处理

    • 发布日期:2021-03-10
    • 文件大小:3072
    • 提供者:wwy12345
  1. 边缘检测

    0下载:
  2. 基于MATLAB的5种边缘检测,Robert,Sobel,Prewitt,LOG,Canny。(Five edge detections based on MATLAB, Robert, Sobel, Prewitt, LOG, Canny.)
  3. 所属分类:matlab例程

  1. 图像边缘检测多方法对比matlab程序

    0下载:
  2. 使用prewitt、log、canny方法检测边缘,显示图像边缘并可看出不同检测方法的效果
  3. 所属分类:2D图形编程

    • 发布日期:2020-04-09
    • 文件大小:658
    • 提供者:msvhgt@163.com
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com