搜索资源列表
adaptivethresholdImageSeg_Text
- 自适应阈值的图像分割及文字提取技术,matlab,对学习基本原理有帮助,Adaptive threshold for image segmentation and text extraction technology, matlab, the basic principles of learning will help
基于Otsu法自适应阈值的图像分割研究
- 基于Otsu法自适应阈值的图像分割研究 论文,Otsu method based on adaptive threshold for image segmentation research papers
jj.rar
- 不规则光照下自适应阈值的前景背景分离算法源代码,相当好用哦,Irregular light of the prospects of adaptive threshold background separation algorithm source code, very easy to use, oh
xiaoboruanyuzhiquzao.rar
- 小波软阈值去噪,具有较高的SNR,是一种自适应阈值算法,Wavelet soft-threshold de-noising with high SNR, is an adaptive threshold algorithm
thresholdadaptive200810
- 实现一个自适应阈值的算法,用以在不规则光照下从背景中提取出前景图像。-The realization of an adaptive threshold algorithm for the irregular light extracted from the background images prospects.
YuZhiQuZao
- 一个阈值去噪程序,包括经典的去噪方法,如折中阈值,自适应阈值等等。-A threshold denoising procedures, including the classical denoising methods, such as compromise threshold, adaptive threshold and so on.
matlab
- 基于matlab对灰度图像的二值化自适应阈值的算法-Gray image binarization adaptive algorithm
aaa
- 用自适应阈值方法实现细胞图像分割源代码 可执行,效果不错,-Adaptive threshold method used to achieve cell image segmentation executable source code, well,
zishiyingyuzhilvbo
- 自适应阈值滤波程序,用matlab实现.zishiyinglvzhilvbo-Wiener filtering procedures winer filter to achieve
otsu
- otsu算法实现,可以自适应获取阈值,对图像进行二值化。里面配有图像均衡化的程序一起使用,效果更好-otsu algorithm, you can get adaptive threshold for image binarization. Which is equipped with image-based program used in conjunction with a balanced, better
adaptivethreshold
- 用matlab编写自适应阈值算法,并调用该自适应阈值函数。-Prepared using matlab adaptive threshold algorithm, and call the adaptive threshold function.
chepaishibie
- 学数字图像处理课程做的一个大作业,车牌识别的,用matlab编程实现,并采用了自适应阈值法,最后用模板匹配的方法实现了车牌的自动识别功能-Learn digital image processing program to do a great job, license plate recognition with matlab programming, using the adaptive threshold method, and finally with the template match
OTSU_matlab
- 基于matlab环境下写的OTSU算法,自适应阈值分割,非常适用的阈值分割算法,适用于计算机图像处理初学者。-Matlab environment based on written OTSU algorithm, adaptive threshold, very applicable threshold segmentation algorithm for computer image processing for beginners.
OTSU
- OTSU方法计算图像二值化的自适应阈值,算法对输入的灰度图像的直方图进行分析,将直方图分成两个部分,使得两部分之间的距离最大。划分点就是求得的阈值。 -OTSU method of adaptive image binarization threshold, the algorithm of the input histogram analysis of gray image, the histogram is divided into two parts, making the maxim
adaptivePbievalue
- 一种全新的自适应阈值二值化方法,欢迎各位指教-A new adaptive threshold binarization methods, advice welcome
基于自适应阈值分割的宫颈细胞图像分类算法
- 基于自适应阈值分割的宫颈细胞图像分类算法论文详细阐述了作者进行图像预处理,分割,细胞分类的步骤,很值得学习(Cervical Cell Image Classification Algorithm Based on Adaptive Threshold Segmentation The paper elaborates on the author's steps of image preprocessing, segmentation and cell classification, and i
自适应阈值
- 最大类间方差法是由日本学者大津(Nobuyuki Otsu)于1979年提出的,是一种自适应的阈值确定的方法,又叫大津法,简称OTSU。它是按图像的灰度特性,将图像分成背景和目标2部分。背景和目标之间的类间方差越大,说明构成图像的2部分的差别越大,当部分目标错分为背景或部分背景错分为目标都会导致2部分差别变小。因此,使类间方差最大的分割意味着错分概率最小。(The largest between-class variance method was proposed by the Japanese
1
- 基于阈值的图像分割,自适应阈值分割,会显示直方图和阈值。(Threshold based image segmentation, adaptive threshold segmentation, histogram and threshold will be displayed.)
matlab.thresholding-master
- 在计算机视觉中,图像分割是将图像分成多个片段的过程。这使我们能够通过以比原始图像更简单的表示方式来更好地分析图像。一种用于分割图像的方法是阈值分割;也就是说,将强度值低于阈值的所有像素设置为背景值,而将高于阈值的其他像素设置为前景值。最简单的阈值处理形式是对所有像素使用全局阈值,而自适应阈值处理根据像素及其周围环境动态改变阈值。典型地,阈值处理从灰度图像开始,并输出二进制图像以清晰地描绘图像中的片段。在本实验中,我们开发了一种自适应阈值算法,并将其与更简单的算法进行了比较。 此外,我们还开发了
自适应阈值二值化算法
- 在图像处理过程中经常遇到图片存在光照均匀的情况,这时候传统的全局阈值化算法处理效果不佳,本次算法能够有效的解决此类问题。