登录
首页 » matlab » 模式识别

模式识别

于 2021-01-30 发布
0 230
下载积分: 1 下载次数: 4

代码说明:

说明:  对一副已经给出的图像进行中值滤波处理,利用罗伯特算子、索伯尔算子、canny算子、拉普拉斯算子,分别进行边缘检测。 具体见说明文档。(A given image is processed by median filter. Robert operator, Sobel operator, Canny operator and Laplace operator are used for edge detection. See the instruction document for details.)

文件列表:

源程序, 0 , 2020-12-28
源程序\canny.fig, 1787159 , 2020-12-19
源程序\canny.m, 7522 , 2020-12-20
源程序\canny_1.fig, 142504 , 2020-12-20
源程序\hough.fig, 3462627 , 2020-12-19
源程序\hough_1.m, 861 , 2020-12-19
源程序\huiduzhuanhuan.fig, 2936602 , 2020-12-19
源程序\huiduzhuanhuan.m, 150 , 2020-12-19
源程序\Image1_withnoise.jpg, 68020 , 2020-12-07
源程序\ImageA.jpg, 140559 , 2020-12-19
源程序\ImageA_1.png, 349454 , 2020-12-19
源程序\imageB.jpg, 81660 , 2020-12-19
源程序\ImageB_1.png, 271444 , 2020-12-19
源程序\jiaquan.fig, 2939129 , 2020-12-19
源程序\jiaquan.m, 410 , 2020-12-19
源程序\laplacian.fig, 1743574 , 2020-12-19
源程序\Laplacian.m, 1106 , 2020-12-20
源程序\Laplacian_1.fig, 852437 , 2020-12-20
源程序\pingjun.m, 484 , 2020-12-19
源程序\pingjunfa.fig, 2181708 , 2020-12-19
源程序\robots.fig, 1659497 , 2020-12-19
源程序\robots.m, 783 , 2020-12-19
源程序\robots_1.fig, 233265 , 2020-12-19
源程序\sobel.fig, 1730583 , 2020-12-19
源程序\sobel.m, 3714 , 2020-12-19
源程序\sobel_1.fig, 182805 , 2020-12-19
源程序\suanzi.m, 1020 , 2020-12-19
源程序\zhongzhilvbo.fig, 2671206 , 2020-12-19
源程序\zhongzhilvbo.m, 389 , 2020-12-19
源程序\zhongzhilvbo1.fig, 1697561 , 2020-12-19
源程序\zhongzhilvbo_1.m, 516 , 2020-12-19
源程序\zuidazhi.fig, 2945341 , 2020-12-19
源程序\zuidazhi.m, 408 , 2020-12-19
说明.docx, 5290875 , 2021-01-30

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 颜色直方
    它所描述的是不同色彩在整幅图像中所占的比例,而并不关心每种色彩所处的空间位置,即无法描述图像中的对象或物体。颜色直方图特别适于描述那些难以进行自动分割的图像。(It describes the proportion of different colors in the entire image, and does not care about the spatial location of each color, that is, it can not describe objects or objects in the image. Color histograms are especially suitable for describing images that are hard to segment automatically.)
    2017-07-11 14:17:48下载
    积分:1
  • MATLAB
    小波去噪,图像融合,简单的小波去噪程序.(Image denoising in the wavelet domain using Matlab.)
    2012-05-15 19:17:29下载
    积分:1
  • lankton_stereo
    一个外国人写的基于分割的立体匹配算法代码,可以在matlab7.1以后版本中直接执行,代码结构也很清晰,适合分析学习(Written by a foreigner based on the partition of the three-dimensional matching algorithm code, you can later matlab7.1 direct the implementation of the code structure is very clear and suitable for analysis of learning)
    2008-06-20 09:57:22下载
    积分:1
  • jiangcaiyang
    对图像进行降采样处理,将原图像变为五分之一大小。(The image down-sampling processing, the size of the original image into a fifth.)
    2010-01-10 22:42:51下载
    积分:1
  • ostu
    此代码应用于图像分割,是基于类间方差的大津法求分割阈值(This code applies to image segmentation is based on the variance between two classes of Otsu threshold segmentation uated)
    2015-12-01 18:46:59下载
    积分:1
  • compute_homography
    用于求解张正友相机标定过程中的单应性矩阵(Homography matrix for camera calibration)
    2018-09-06 16:19:49下载
    积分:1
  • colouredgedetection
    对灰度和真彩色位图实现了多种边缘提取算法(Of gray-scale and true color bitmaps to achieve a variety of edge detection algorithm)
    2007-09-09 21:53:10下载
    积分:1
  • 利用SVM或者其他机器学习算法进行分类识别 LBP
    (1)计算图像中每个像素点的LBP模式(等价模式,或者旋转不变+等价模式)。 (2)然后计算每个cell的LBP特征值直方图,然后对该直方图进行归一化处理(每个cell中,对于每个bin,h[i]/=sum,sum就是一副图像中所有等价类的个数)。 (3)最后将得到的每个cell的统计直方图进行连接成为一个特征向量,也就是整幅图的LBP纹理特征向量; 然后便可利用SVM或者其他机器学习算法进行分类识别了。((1) calculate the LBP pattern of each pixel in the image (equivalent mode, or rotation invariant + equivalent mode). (2) then the LBP eigenvalue histogram of each cell is calculated, and then the histogram is normalized (for each cell, for each bin, h[i]/=sum, sum is the number of all the equivalent classes in a pair of images). (3) finally, the statistical histogram of each cell is connected into a feature vector, that is, the LBP texture feature vector of the whole picture. Then, SVM or other machine learning algorithms can be used for classification and recognition.)
    2020-07-01 20:00:02下载
    积分:1
  • regiongrow2
    区域生长,基本处理方法是 以一组种子点开始来行程生长区域,即将哪些预定义属性类似于种子的邻域像素附加到每个种子上 (regional growth, the basic approach is based on a group of seed starting point to the growth of regional tour, What about predefined attributes similar to seed the neighborhood of each pixel additional seeds)
    2006-12-21 20:53:55下载
    积分:1
  • watershed_demo
    说明:  基于matlab软件分水岭方法的图像分割处理技术(Image segmentation processing technology based on watershed method in matlab software)
    2019-11-25 19:01:53下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载