搜索资源列表
Edgelink
- 一个图像的边缘连接程序,可以将两幅图像无缝连接成一幅图像。-an image edge connector process, which would be two images into one seamless image.
BoundaryDetectionVc++Res
- 图像处理中的边缘检测以及曲线拟合的结合应用,实现边缘连接和线段拟合源码-image processing edge detection and curve fitting combination of applications, connectivity and edge line fitting FOSS
Edgelink_
- 实现边缘连接和线段拟合源码,用MATLAB实现,可直接执行,供研究用-achieve connectivity and edge line fitting source, using MATLAB, can be directly implemented, for research
matlabIMG
- 图象处理的matlab程序集,包括角点检测,边缘连接,高通滤波器,低通滤波器等等。-image processing procedures of Matlab scr ipts, including corner detection, edge connectivity, high-pass filter, Low-pass filter, and so on.
edgelink
- 这个源代码是用于边缘连接和线性拟合使用matlab写的-This source code is used to edge connectivity and the use of linear regression written in matlab
bianyuanjiance
- 实现边缘连接和线段拟合源码,希望能与大家共享 -Realize the edge connectivity and line segment fitting source, hoping to share with everyone
hough
- 霍夫变换是一个非常有用的算法,可以检测直线、圆、椭圆等等,也可以进行边缘连接。-Hough transform is a very useful algorithm, can detect a straight line, round, oval, etc., can also be connected to the edge.
edge_detection
- 用matlab程序实现:小波模极大值用于边缘提取。对matlab中常用的woman图进行仿真,从最后的结果仿真图看出模极大值用于边缘检测的作用。-Matlab procedures used to achieve: Wavelet Modulus Maxima for edge detection. Matlab commonly used on the woman plans to carry out simulation, simu
hough(vc)
- Hough变换最先是由Paul Hough在1962年提出的, 它所实现的是一种从图像空间到参数空间的映射关系,其主要优点就是检测几何形状的能力较少受到几何形状中间断点的干扰 , 而且不需要预先组合或连接边缘点, 可以广泛应用于纤维、 孔径等自动检测中-Hough transform is the first by Paul Hough in 1962, and it is a realization from the image sp
shendusousuo
- 深度搜索,可将边缘断点连接起来,多用于图像分割中和边缘检测结合使用-Depth of search, could be the edge connecting the breakpoints are used for image segmentation and edge detection used in conjunction
Edge_linking_line_segment_fitting
- matlab示例程序,可以边缘检测、腐蚀、膨胀等基本操作,另外还可以对检测得到的边缘进行连接操作。-matlab example of the procedure, you can edge detection, corrosion, expansion of the basic operation of detection can also be operated to connect the edge.
edgelink
- 连接边缘算法提取的孤立点,实现图像边缘连接-link the point to get edges in the image
linkedge
- 图像处理中用于边缘检测图像的边缘连接和边缘拟合的代码-link edge
Edgelink_
- 做完边缘提取之后,有的边缘断断续续,需要进行边缘连接,将其连成完整线。-Done after edge detection, and some off the edge, the edge needed to connect, to link into the full line.
trace
- 8邻域边缘连接,实现闭合边界跟踪,简单实用-8 neighborhood edge connector, to achieve closure boundary tracking, simple and practical
v_ShortLine_Detect
- 本程序可实现图像边缘检测后的短线段检测和连接-the short line will be detected and linked by using this programm
边缘提取
- 边缘提取:边缘检测的基本思想首先是利用边缘增强算子,突出图像中的局部边缘,然后定义象素的“边缘强度”,通过设置阈值的方法提取边缘点集。由于噪声和模糊的存在,监测到的边界可能会变宽或在某点处发生间断。因此,边界检测包括两个基本内容: (1)用边缘算子提取出反映灰度变化的边缘点集。 (2)在边缘点集合中剔除某些边界点或填补边界间断点,并将这些边缘连接成完整的线。(Edge extraction: the basic idea of ed
edgelink
- 对边缘检测后出现的不连续的部分进行边缘连接(Edge join after the edge detection appears.)
边缘连接和线段拟合
- 线段和边缘连接拟合程序,可根据其中各自研究方向对内容自行修改,(Segment and edge connection fitting procedures, which can be modified on the basis of their respective research directions.)
hough变换实现边缘检测
- 基于matlab实现图像边缘检测。首先使用高斯滤波器对图像进行去噪和平滑处理,目的是减少噪声对梯度计算的影响。接着计算梯度幅值大小和方向,Canny算法的基本思想是寻找一幅图像中灰度值变化最强的位置,平滑后的图像由prewitt算子计算梯度的幅值和方向。然后采用非极大值抑制技术消除边缘误差,使模糊的边界变得清楚。最后采用双阈值技术对非极大值抑制后的图像做进一步的处理,并用滞后技术跟踪边缘,进行边缘连接。