登录
首页 » matlab » image

image

于 2010-03-14 发布 文件大小:41KB
0 133
下载积分: 1 下载次数: 143

代码说明:

  对图像进行滤波,顶帽变换并计算中心,有图片,可直接运行。(The image filtering, top-hat transform and Computing Center, there are images which can be directly run.)

文件列表:

pic2.jpg
pic3.jpg
pic.jpg
pic.m

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

发表评论


0 个回复

  • low_fft
    通过低通滤波器,实现对图像的平滑处理,使得图像的对比度变低,具有膨胀的效果。(Low-pass filter, to achieve smoothing of the image, so that the image contrast is low, having an expansion effect.)
    2014-03-31 19:59:15下载
    积分:1
  • CBCT
    FDK算法 重建三维图像,期中有GPU并行计算加速fdk算法的实例(back-projection to RECONSTRUCT 3D IMAGE)
    2018-02-16 05:30:53下载
    积分:1
  • GUI
    本压缩文件利用Matlab制作了一个能识别居民身份证号码的系统,使用图像处理技术,实现了计算机识别数字的功能。(The compressed file using the Matlab made a system can identify the identity card number, using image processing technology, realized the function of the digital computer identification. )
    2013-10-16 10:35:43下载
    积分:1
  • medical-picture-process
    《医学图像编程技术》,周振环。一书的源码(the source code of the "medical picture programing")
    2012-03-14 15:02:31下载
    积分:1
  • DIP
    包含基于三种不同方法的应用于图像处理的矩阵低秩分解的matlab算法,可以将目标图像分解为一个低秩图像和一个稀疏图像之和;并包含一种基于区域生长方法的图像区域识别程序,可以用来提取图像中的目标。(Containing used in image processing based on three different methods of low-rank matrix decomposition algorithm matlab, the target image can be decomposed into a low rank of the image and the image and a sparse and contains a region growing method based on image area recognition program It can be used to extract the object in the image.)
    2016-03-12 10:15:41下载
    积分: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
  • sift_test
    sift图像处理的一个测试的代码,他是用C++写的 用到了opencv中的一些函数(sift image processing as a test of the code, he wrote with C++ uses some of the opencv function)
    2013-07-27 22:19:41下载
    积分:1
  • winner
    matlab做的图像去噪程序,使用的是维纳滤波法(winner),内附图像,可直接运行(matlab image denoising procedure, using the Wiener filter method (winner), included images, can be run directly)
    2012-03-15 16:44:05下载
    积分:1
  • ViBe-master
    前景检测 对动态背景进行多角度监测 动态背景检测(Foreground detection is used to monitor dynamic background from different angles)
    2020-11-17 21:19:39下载
    积分:1
  • GeometricVersion3
    课程设计 几何图形(满分50 分) 版本1:满分10 分 设计抽象类GeometricObject 及其子类Triangle 和Circle。 GeometricObject 类设计要求如下: ■ 一个名为color 的Color 类型的私有数据域,表示对象的颜色。 ■ 一个名为filled 的Boolean 类型的私有数据域,表示对象是否填充颜色。 ■ 一个名为dateCreated 的Date 类型的私有数据域,表示对象的创建日期。 ■ 一个无参构造方法。 ■ 一个能创建特定color 和filled 的有参构造方法。 ■ 相关数据域的访问器和修改器。 ■ 两个个名为draw 和erase 的抽象方法。 ■ 一个名为getArea 的抽象方法。 ■ 一个名为getPerimeter 的抽象方法。 ■ 重写toString 方法。 Triangle 类设计要求如下: ■ 三个名为side1、side2 和 side3 的double 类型的私有数据域表示三角形的三条边。它 们的默认值是1.0。要求三个数据域保留2 位小数。 ■ 一个无参的构造方法创建默认三角形。 ■ 一个能创建带指定side1、side2 和 side3 的有参构造方法。 ■ 所有三个数据域的访问器和修改器方法。 ■ 父类抽象方法的实现。 ■ 重写toString 方法。 Circle 类(Curriculum Design Geometry (out of 50) Version 1: 10 points Design an abstract class and its subclasses GeometricObject Triangle and Circle. GeometricObject class design requirements are as follows: ■ a named color of the Color type private data field that indicates the object s color. ■ a Boolean type called filled private data field that indicates whether the object fill color. ■ Date type named dateCreated private data field, which means that the object was created. ■ a no-argument constructor. ■ one can create a specific color and filled in with arg constructor. ■ Related data field accessor and modifier. ■ two months called draw and erase the abstract methods. ■ an abstract method named getArea. ■ an abstract method named getPerimeter. ■ overridden toString method. Triangle class design requirements are as follows: ■ three named side1, side2 and a double side3 private data field indicates the type of triangle with three sides. It Our default value is 1.0. Requires)
    2020-12-10 08:59:18下载
    积分:1
  • 696518资源总数
  • 105306会员总数
  • 25今日下载