搜索资源列表
opencv-ostu
- 基于OPENcv大津阈值分割运动目标检测方法的源代码- the code of otsu for moving goal detection based on opencv
otsu
- 利用opencv采集视频输入,并将输入的图像调用OTSU算法,提取运动目标-Using opencv capture video input, and input image is called OTSU algorithm to extract moving objects
Otsu
- 基于opencv的,使用Otsu方法对灰度图像进行自适应二值化-using Otsu method to binary the gray image adaptively based on opencv
LocalOstu
- 基于opencv的otsu阈值分割,根据最大类间方差原理,进行全局图像分类-Opencv based on the Otsu threshold segmentation, in accordance with the principle of maximum between-cluster variance for the overall image classification
opencv_otsu
- 基于opencv的otsu阈值分割。C++源代码加压缩备份-Opencv based on the Otsu threshold segmentation. C++ source code add compressed backup
OTSU
- 在VC++6.0 已经openCV环境下的一维OTSU代码,实现图像二值化-// OTSU.h: interface for the COTSU class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_OTSU_H__33C2086A_C181_490B_946D_837B4C7FB914__INCLUDED_) #define AFX
GMMS
- OPENCV下基于高斯混合模型的图像分割,程序中还有 基于大津法的图像分割和金子塔分割。-OPENCV Based on Gaussian mixture model of image segmentation, the program also includes Otsu method based on image segmentation and the segmentation pyramid.
opencv_Based_otsu
- 基于Opencv的otsu自动阈值分割算法-The otsu Opencv based threshold segmentation algorithm automatically
otsu-opencv
- 本算法利用遗传算法根据otsu原则迭代计算得到图像的最优分割阈值。 使用了opencv库。-otsu use opencv
Otsu
- 最大类间方差法实现二值化,基于VC++平台的图像处理基本方法,使用OPENCV进行数据操作-The maximum between-class variance method to achieve binarization, VC++ platform-based image processing of the basic method of use OPENCV data manipulation
Otsu--segmentation
- opencv大津法阈值分割,很不错的资料,共享一下,和大家共勉!-The opencv Otsu threshold segmentation, the very good information, sharing, and encourage one another!
otsu
- 利用opencv做的关于otsu算法的目标识别程序,其实别主要基于颜色-Target recognition program using the opencv otsu algorithm, in fact, do not mainly based on the color
opencv-otsu
- Opencv处理图像,用ostu法实现图像的二值化-Opencv image processing, using ostu method to achieve image binarization
Otsu in opencv
- Otsu in opencv have main function
Otsu
- Otsu in opencv have main function
otsu
- 应用Opencv中的函数来实现大津算法,实现阈值的自适应获取,从而进行图像分割。-Otsu,image segmentation
Otsu
- 大津律法C++程序的是实现,并不是用Opencv封装好的函数,是自己编写的算法程序-Otsu law C++ program is realized, and not with the function of Opencv package is good, is to write your own program.
otsu
- 基于大津法的图像二值化处理。环境:vc++2013,opencv。新手弄了好久,应该没有什么大的参考性。-Based on the Otsu binary image processing, and newcomers get a long time, it should be no big informative.
Otsu方法
- opencv做的otsu方法,一、Otsu算法原理 Otsu算法(大津法或最大类间方差法)使用的是聚类的思想,把图像的灰度数按灰度级分成2个部分,使得两个部分之间的灰度值差异最大,每个部分之间的灰度差异最小,通过方差的计算来寻找一个合适的灰度级别来划分。 所以可以在二值化的时候采用otsu算法来自动选取阈值进行二值化。otsu算法被认为是图像分割中阈值选取的最佳算法,计算简单,不受图像亮度和对比度的影响。因此,使类间方差最大的分割意味着错分概率最小。 设t为设定的阈值。(otsu made