搜索资源列表
VTB4Matlab
- 一组图象与视频处理C/C++代码,该软件包可用于Matlab。包括读取AVI和CIF/QCIF视频序列代码,Canny算子,Harris角点检测,全局阈值算法,动态阈值算法等等。-AP as a video processing with C / C code, the software can be used in Matlab. AVI including reading and CIF / QCIF video sequence code, Canny operator, Harris c
denosing
- 这是一个小波阈值去噪的程序。优点:可以根据数据信号(2D)的特征确定全局阈值大小。-This is a wavelet thresholding procedure. Advantages : according to data signals (2D) to determine the characteristics of the overall size threshold.
DirectLocal-thresholdingMethod
- 本文首先介绍完整的文档处理系统以及其预处理模块,然后将重点放在二值化问题上,给出图像阈值化方法的综述,并对全局阈值化、局部动态阈值化等方法的优点和缺点给出评价。-This paper introduces a complete document processing system and its preconditioning module, then will focus on two issues of value, the threshold value is given image sy
Otsu
- 用C++实现的OTSU大津阈值分割方法,使用的是图像的全局阈值
FingerPrintBinary
- 实现指纹图像二值化的算法,包括全局阈值二值化方法、局部阈值二值化方法、罗希平的基于方向场的二值化方法以及Mehtre B M , Chatterjee B的二值化方法4种不同的二值化方法。
21923998225200710261343564531604
- 一个图像处理的基本简单的处理:二值化。此算法的难点在于寻找阈值,分为全局阈值和局部阈值!
diedaizuijiayuzhifenge
- 迭代最佳阈值分割——初始阈值选取为图像的平均灰度T0,然后用T0将图像的象素点分作两部分,计算两部分各自的平均灰度,小于T0的部分为TA,大于T0的部分为TB 计算,将T1 作为新的全局阈值代替T0,重复以上过程,如此迭代,直至TK 收敛,即TK+1 =TK
direct
- 使用迭代法进行全局阈值分割的VC++的实现,可以使用
wavelet_compress
- 本程序为应用小波变换进行信号压缩。由于本程序涉及到了小波变换的函数,因此可能涉及到一些时频分析工具箱的函数。程序中应用db3小波进行3层分解,选用全局阈值进行阈值处理,即对各高频系数使用同一个阈值,进行阈值处理。
opencv 图像的二值化
- opencv 图像的二值化,包括局部阈值,全局阈值,自适应阈值法,对初学者帮助很大-opencv image binarization, including the local threshold, the global threshold, adaptive threshold, very helpful for beginners
tuxiangqiege
- 基于像素点的全局阈值法求图像的分割 实现方法有五种: 最小极值法,最优阈值法,最大方差方法,最大熵法,迭代法-Pixel-based global threshold method for image segmentation method there are five: the smallest extreme value method, the optimal threshold method, the largest variance method, the maximum ent
ImageN
- 原理是冈萨雷斯《数字图像处理(第二版)》的二值图像处理:基本全局阈值法,双阈值法。以及邻域处理中单点宽边界检测,连通检测等算法。-Principle is that Gonzalez " Digital Image Processing (Second Edition)" Binary Image Processing: Basic global threshold method, dual-threshold method. And the neighborhood to
jingdianostu
- 用matlab编辑的ostu算法,很好用,能计算出全局阈值并输出处理后图像-Ostu algorithm using matlab editor, useful, able to calculate the global threshold and the output processed images
three_denosie
- 实现三种经典的阈值去噪算法,包括全局阈值,hersure阈值,minimaxi阈值,及比尔热马萨特阈值。-to realize three methods of threshold-denoising
zishiying
- 该实例程序通过改进灰度直方图双峰法,实现了迭代求全局最佳阈值,对于前背景灰度范围差异明显的图像有良好的分割效果。(By improving the gray histogram Shuangfeng method, the example program achieves the global optimum threshold by iteration, and has good segmentation effect for the images with obvious differenc
自适应阈值生成后进行图像分割
- 自适应阈值生成后进行阈值分割,内部含有测试图片,与全局阈值进行图像分割不同的另一种方法(After the adaptive threshold is generated, the threshold segmentation is carried out. Another method is different from the global threshold for image segmentation)
opencv 基本全局阈值法--二值化
- 图像二值化代码,使用全局二值化算法实现,效果不错(binary transfer algorithm)
matlab.thresholding-master
- 在计算机视觉中,图像分割是将图像分成多个片段的过程。这使我们能够通过以比原始图像更简单的表示方式来更好地分析图像。一种用于分割图像的方法是阈值分割;也就是说,将强度值低于阈值的所有像素设置为背景值,而将高于阈值的其他像素设置为前景值。最简单的阈值处理形式是对所有像素使用全局阈值,而自适应阈值处理根据像素及其周围环境动态改变阈值。典型地,阈值处理从灰度图像开始,并输出二进制图像以清晰地描绘图像中的片段。在本实验中,我们开发了一种自适应阈值算法,并将其与更简单的算法进行了比较。 此外,我们还开发了
16 阈值分割
- 阈值分割的各种方法的集合。局部阈值分割法,全局手动、自动阈值分割(A set of thresholding methods. Local Threshold Segmentation, Global Manual and Automatic Threshold Segmentation)
自适应阈值二值化算法
- 在图像处理过程中经常遇到图片存在光照均匀的情况,这时候传统的全局阈值化算法处理效果不佳,本次算法能够有效的解决此类问题。