CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - sobel算法

搜索资源列表

  1. 图像增强及模式分析

    1下载:
  2. 该源码程序包括:增强图像对比度,检测图像边缘(使用Canny算子和Sobel算子),直方图均衡化等图像处理的一些常用算法,且能取得较好的处理效果。
  3. 所属分类:GDI/图象编程

    • 发布日期:2010-10-24
    • 文件大小:801.72kb
    • 提供者:zh_jiapei
  1. 图像边缘检测sobel算法

    0下载:
  2. 图像边缘检测sobel算法
  3. 所属分类:GDI/图象编程

    • 发布日期:2011-04-06
    • 文件大小:1.12mb
    • 提供者:_CEO_Bitch
  1. ImgPro

    0下载:
  2. 自己写的java数字图像处理,实现几种简单的分割图像算法;sobel,prewitt等。-Write your own java digital image processing, image segmentation algorithm several simple sobel, prewitt and so on.
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-05-16
    • 文件大小:4.23mb
    • 提供者:encho
  1. 56465416

    0下载:
  2. 介绍一种实用的二维条码识别算法。首先探讨了二维条码的定位与分割算法,利用Hough变换与Sobel边缘检测把条码图像从原始采集的图像中有效地分割出来 然后分析了条码图像经过光学系统的噪声模型,提出了一种计算点扩展函数标准方差的算法 采用Flourier变换自适应地选取阈值去除噪声导致的无效边界,从而得到条码的基本模块。实验结果表明,该算法具有很好的抗噪性,提高了二维条码的识别率。 -A practical two-dimensional barcode recognition algorit
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:2.23kb
    • 提供者:黄新
  1. 897979

    0下载:
  2. 介绍一种实用的二维条码识别算法。首先探讨了二维条码的定位与分割算法,利用Hough变换与Sobel边缘检测把条码图像从原始采集的图像中有效地分割出来 然后分析了条码图像经过光学系统的噪声模型,提出了一种计算点扩展函数标准方差的算法 采用Flourier变换自适应地选取阈值去除噪声导致的无效边界,从而得到条码的基本模块。实验结果表明,该算法具有很好的抗噪性,提高了二维条码的识别率。 -A practical two-dimensional barcode recognition algorit
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:1.56kb
    • 提供者:黄新
  1. Codejia.com_40df9b18b021a0ff2295123f1192b961

    0下载:
  2. 共创在线考试测试系统源码2.1.0版利用HOUGH变换提取边界特征,还有SOBEL算子的算法 -Create online exam testing system version 2.1.0 source code using HOUGH transform boundary feature extraction, as well as Sobel Operator Algorithm
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-15
    • 文件大小:3.45mb
    • 提供者:qqqq
  1. sobel

    0下载:
  2. Sobel 算法 本程序实现了Sobel算法,利用Sobel算法可以实现图像的边缘提取-Sobel algorithm implements the procedure Sobel algorithm, using Sobel algorithm for image edge detection
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:667byte
    • 提供者:sqqs
  1. edge

    0下载:
  2. 本程序实现对于CT图像的边缘提取算法,如Sobel,Robert,Priwitt,Laplacian,边缘跟踪算法,及射线法的边缘提取。-Implementation of this program for the CT image edge extraction algorithms such as Sobel, Robert, Priwitt, Laplacian, edge tracking algorithm, and the ray method of edge detection.
  3. 所属分类:GUI Develop

    • 发布日期:2017-06-16
    • 文件大小:24.6mb
    • 提供者:东哥
  1. chepai

    0下载:
  2. 基于sobel算子的简单车牌识别提取,算法简单 -Sobel operator based on the simple extraction of license plate recognition algorithm is simple
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:893byte
    • 提供者:Dora
  1. Image-edge-detection

    0下载:
  2. 在DM642的板子上实现图像的边缘检测功能,在检测的过程中采用的是sobel算法-Image edge detection sobel algorithm used in the testing process on the DM642 board
  3. 所属分类:CSharp

    • 发布日期:2017-04-09
    • 文件大小:1.48mb
    • 提供者:han bingjie
  1. Tsobbelhougghh

    0下载:
  2. 该源代码首先使用sobel算法对图像进行行边缘提取,后运用hough变换提取圆形。 -The source code is the first to use the sobel line edge detection algorithm for image use hough transform to extract the round.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:39.53kb
    • 提供者:权力
  1. TGUISUSANh

    0下载:
  2. 边缘是图像最基本的特征,是图像分割的第一步。经典的边缘检测方法如:Roberts,Sobel,Prewitt,Kirsch,Laplace等方法,基本都是对原始图像中象素的小邻域构造边缘检测算子,进行行一阶微分或二阶微分运算,求得梯度最大值或二阶导数的过零点,最后选取适当的阀值提取边界。由于这些算法涉及梯度的运算,因此均存在对噪声敏感、计算量大等缺点。在实践中,发现SUSAN算法只基于对周边象素的灰 -Edge of the basic characteristics of the imag
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-04
    • 文件大小:1.05mb
    • 提供者:干预
  1. tsobbellh

    0下载:
  2. 这是我本人自己开发的可用于256*256大小的图像进行sobel边缘检测的vhd文件,可在QuartusII或MaxplisII下综合与与仿真,并在FPGA上测试过。能进行修改支持其他大小图像的sobeel边缘检测,同时还能实现其它的图像模块化处理算法,例如高斯滤波,平滑等。 -This is my own development vhd file, can be used for 256* 256 size image sobel edge detection under QuartusI
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:2.85kb
    • 提供者:兴奋
  1. CalBMPpsnr

    0下载:
  2. 本文采用 Sobel 算子检测待插像素点周围的原图像像素点,判断其是否边缘点并检测出边缘方向,再依据沿边缘走向的像素点灰度变化平缓,边缘两侧像素点灰度值突变的进 行待插像素点的自适应插值。该算法具有较低的算法复杂度良好的客观质量,视觉效果以及最佳的图像缩放综合性能。本文工作是正在开发的数字电视图像后处理SoC芯片中 的一部分,下一步工作为:完成本文算法的硬件实现,将其作为 SoC 芯片中的图像缩放模块,与降噪模块、去隔行模块等其他 IP 模块一起形成完整的数字电视图像后处理 SoC芯片。
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-11-16
    • 文件大小:5.08mb
    • 提供者:吴江
  1. main

    0下载:
  2. sobel算法-sobel algorithm
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-04-11
    • 文件大小:1.45kb
    • 提供者:wang
  1. 111

    0下载:
  2. sobel算法,对图像进行边缘化处理得到灰度图像-sobel algorithm for image processing to obtain grayscale images marginalized
  3. 所属分类:Other systems

    • 发布日期:2017-04-08
    • 文件大小:1.02kb
    • 提供者:曹元
  1. bmp-bianyansuanfa

    0下载:
  2. 求bmp图像的边缘的几种算法,包含 canny,sobel,Robert-Bmp image seeking the edge of several algorithms, including the canny, sobel, Robert, etc.
  3. 所属分类:Other systems

    • 发布日期:2017-05-09
    • 文件大小:1.78mb
    • 提供者:赵彦东
  1. sobel-with-verilog-language

    0下载:
  2. 用verilog实现sobel边缘检测算法-sobel edge detection with verilog language
  3. 所属分类:Other systems

    • 发布日期:2017-04-26
    • 文件大小:7.94kb
    • 提供者:施楠
  1. Sobel

    0下载:
  2. sobel 算子的边缘检测算法,基于VC++实现的算法,对于图像的边缘检测效果良好,已经封装好模块,直接调用-Sobel operator edge detection algorithm, based on vc++ realize the algorithm, for image edge detection effect is good, have good encapsulation module, direct call
  3. 所属分类:Windows Develop

    • 发布日期:2017-06-22
    • 文件大小:37.63mb
    • 提供者:袁建新
  1. src的副本

    0下载:
  2. 实现了canny 和 sobel边缘检测(Implementation canny sobel of edge detection algorithm)
  3. 所属分类:其他

    • 发布日期:2018-05-04
    • 文件大小:9kb
    • 提供者:wu shuang
« 12 »
搜珍网 www.dssz.com