搜索资源列表

  1. hough_直线

    3下载:
  2. 采用vc++编程,可以处理8位bmp图像。先进行阈值分割,然后可以轮廓提取。最后可以进行平行线检测,采用hough变换-using vc programming, can handle eight bmp images. First threshold for segmentation, which can then be extracted contour. Finally parallel line can be detected
  3. 所属分类:图形图象

    • 发布日期:2024-06-21
    • 文件大小:2081792
    • 提供者:刘秉帼
  1. bkwait

    0下载:
  2. 做个图像直线检测的算法,主要是用来检测图像中的直线,-Make out an arithmatic of checking lines.It is mainly used to check and measure the lines in pictures.
  3. 所属分类:Windows编程

    • 发布日期:2024-06-21
    • 文件大小:1024
    • 提供者:郁闷ing
  1. 直线检测

    0下载:
  2. 所属分类:控制台(字符窗口)编程

    • 发布日期:2024-06-21
    • 文件大小:1024
    • 提供者:张莉
  1. Hough-fast

    0下载:
  2. Hough变换的简易程序, * 该函数用于对检测图像中的平行直线。如果图像中有两条平行的直线,则将这两条平行直线 * 提取出来。 * * 要求目标图像为只有0和255两个灰度值的灰度图像。-Hough transform to the simplified procedure,* The function used to detect images of parallel linear. If the images
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2024-06-21
    • 文件大小:6144
    • 提供者:wu tao
  1. Houghpeaks

    1下载:
  2. 检测直线的hough变换,峰值检测,线检测和链接的用matlab实现 -line detection hough transform, peak detector, linear detection and link with the realization of Matlab
  3. 所属分类:2D图形编程

    • 发布日期:2024-06-21
    • 文件大小:3072
    • 提供者:郭晓娟
  1. houghpeaks00

    1下载:
  2. 不用多说了,和Hogh搭配使用检测直线的程序 直线Hough变换利用图像空间和Hough参数空间的点-线对偶性,把图像空间中的检测问题转换到参数空间。通过在参数空间里进行简单的累加统计,然后在Hough参数空间寻找累加器峰值的方法检测直线。-Needless to say, Hogh mix and the use of linear detection procedures Hough transform space and th
  3. 所属分类:图形图象

    • 发布日期:2024-06-21
    • 文件大小:1024
    • 提供者:
  1. HoughTrans

    0下载:
  2. 自己写的Hough Transform检测直线和圆的代码,直线检测做了点小改进,可以检测线段,但只能检测一个圆和一条直线,希望对初学者能有帮助-wrote Hough Transform detection of linear and circular code Line Detection done a small improvement can be detected line, but only detected a circle
  3. 所属分类:2D图形编程

    • 发布日期:2024-06-21
    • 文件大小:3899392
    • 提供者:wxj
  1. linedetec

    1下载:
  2. 这是一个使用hough变换来实现一副图像中直线检测的代码,比较高效而且检测效果很不错-use hough transform to achieve an image line detection code, more efficient and effective detection is pretty good
  3. 所属分类:matlab例程

    • 发布日期:2024-06-21
    • 文件大小:1024
    • 提供者:亿摆
  1. houghostu

    0下载:
  2. matlab平台下的一个车道线检测算法 其中主要包括了HOUGH变换方法和大津自动阈值分割方法,在打包文件中详细说明了每个函数的作用,其中包括了验证图片-Matlab platform under a lane line detection algorithm which includes mainly the transformation methods and HOUGH big-automatic thresholding m
  3. 所属分类:GDI/图象编程

    • 发布日期:2024-06-21
    • 文件大小:75776
    • 提供者:田炳香
  1. line_hough

    1下载:
  2. matlab编写的直线检测算法,能够有效的提取出直线。和matlab自带的hough变换实现的同样的功能-matlab prepared in a straight line detection algorithm can effectively extract the straight line. And the hough transform matlab own to achieve the same function
  3. 所属分类:图形图象

    • 发布日期:2024-06-21
    • 文件大小:2048
    • 提供者:cheng tiantian
  1. houghlines

    0下载:
  2. hough算子线检测,houghline函数-hough line detection operator, houghline function
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2024-06-21
    • 文件大小:4096
    • 提供者:tsai
  1. houghlines

    0下载:
  2. 在MATLAB中,使用Hough变换做线检测和链接-In MATLAB, use Hough transform to detect and link line
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2024-06-21
    • 文件大小:1024
    • 提供者:zuo
  1. match

    0下载:
  2. 《图像配准技术及其Matlab编程实现》一书的Matlab源码,有点检测、线检测、Hough变换、遗传算法、蚁群算法、Powell算法和插值算法等。-"Image Registration and Matlab programming," a book of Matlab source code, a bit detection, line detection, Hough transform, genetic algorithm, a
  3. 所属分类:matlab例程

    • 发布日期:2024-06-21
    • 文件大小:345088
    • 提供者:fzj
  1. Hough

    0下载:
  2. Hough变换是图像处理中从图像中识别几何形状的基本方法之一。Hough变换的基本原理在于利用点与线的对偶性,将原始图像空间的给定的曲线通过曲线表达形式变为参数空间的一个点。这样就把原始图像中给定曲线的检测问题转化为寻找参数空间中的峰值问题。也即把检测整体特性转化为检测局部特性。比如直线、椭圆、圆、弧线等。 -Hough transform image processing image recognition from the b
  3. 所属分类:GDI/图象编程

    • 发布日期:2024-06-21
    • 文件大小:24576
    • 提供者:王超
  1. CircularHough_Grd

    0下载:
  2. 使用Hough 变换检测圆,检测线,效果不错-Hough transform circle detection, detection line
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2024-06-21
    • 文件大小:99328
    • 提供者:yaowei
  1. hough--line

    0下载:
  2. Hough变换是图像处理中从图像中识别几何形状的基本方法之一。Hough变换的基本原理在于利用点与线的对偶性,将原始图像空间的给定的曲线通过曲线表达形式变为参数空间的一个点。这样就把原始图像中给定曲线的检测问题转化为寻找参数空间中的峰值问题。也即把检测整体特性转化为检测局部特性。比如直线、椭圆、圆、弧线等-Hough transform is image processing image recognition from the bas
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2024-06-21
    • 文件大小:148480
    • 提供者:丁海龙
  1. Hough

    0下载:
  2. Hough变换 直线检测 线特征提取算子-Hough transform line detection line feature extraction operator
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2024-06-21
    • 文件大小:3873792
    • 提供者:任瑞杰
  1. canny_hough_DM642

    0下载:
  2. dm642平台下的canny边缘检测以及hough线检测程序(dm642 platform, canny edge detect and hought line detect)
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2024-06-21
    • 文件大小:779264
    • 提供者:yuem
  1. hough,gabor,Radon,headata,wdcbm2()

    1下载:
  2. 1.从图像中识别几何形状的基本方法;基本原理是在于利用点与线的对偶性,将原始图像空间给定的曲线通过曲线表达形式变为参数空间的一个点,这样就把原始图像中给定的检测问题转化为寻找参数空间的峰值问题。 2.基于Gabor变换的人眼检测MATLAB实现。 3.基于Radon的车牌矫正方法。 4.基于模型函数headata产生不同大小的头模型数据。 5.基于函数wdcbm2()设置图像分层阈值压缩参数,实现图像压缩(The basic m
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2024-06-21
    • 文件大小:4096
    • 提供者:LD1
  1. 霍夫线变换综合示例

    0下载:
  2. 利用霍夫变换快速检测直线或圆,但是首先对图像进行边缘检测,霍夫变换输入为边缘二值图像(Hough transform is used to detect straight lines or circles, but first, edge detection is carried out, and Hough transform is used as edge two valued image)
  3. 所属分类:Windows编程

    • 发布日期:2024-06-21
    • 文件大小:135168
    • 提供者:拂晓轻寒
« 12 3 4 5 6 7 8 9 10 »

源码中国 www.ymcn.org