登录
首页 » matlab » Otsu

Otsu

于 2011-10-24 发布 文件大小:10051KB
0 324
下载积分: 1 下载次数: 114

代码说明:

  包含了21篇二维最大类间方差(Otsu)阈值分割方法的论文,(Contains 21 article 2 d between the most kinds of variance (Otsu) threshold segmentation method papers)

文件列表:

一种改进的二维直方图的图像阈值分割方法.pdf,282943,2009-09-27
一种新颖的Ostu图像阈值分割方法.pdf,466164,2009-09-27
二维Otsu自适应阈值分割算法的改进.pdf,194271,2009-09-27
二维Otsu自适应阈值选取算法的快速实现.pdf,322616,2009-09-27
二维Otsu阈值分割算法的改进及应用.pdf,452467,2009-09-27
二维最大类间方差阈值分割的快速迭代算法.pdf,1578734,2009-09-27
二维直方图创建的新方法实现图像自动分割.pdf,221989,2009-09-27
二维直方图区域斜分阈值分割及快速递推算法.pdf,1279826,2009-09-27
二维直线型最小误差阈值分割法.pdf,1469844,2009-09-27
基于二维OTSU和遗传算法的红外图像分割方法.pdf,546840,2009-09-27
基于二维最大熵阈值图像分割技术的改进方法.pdf,76732,2009-09-27
基于二维灰度直方图的模糊熵分割方法.pdf,272627,2009-09-27
基于二维直方图的otsu图像分割算法改进.pdf,464686,2009-09-27
基于二维直方图的图像分割算法研究.pdf,319895,2009-09-27
基于二维相关性的图像分割及快速递推算法.pdf,315849,2009-09-27
基于改进的二维Otsu法的图像分割法.pdf,1008451,2009-09-27
基于混沌微粒群和二维Otsu法的图像快速分割.pdf,670855,2009-09-27
基于粒子群和二维Otsu方法的快速图像分割.pdf,362484,2009-09-27
平均灰度级_梯度二维直方图最大相关阈值分割.pdf,606851,2009-09-27
改进的基于二维直方图的最大模糊熵分割方法.pdf,308085,2009-09-27
灰度图象的二维Otsu自动阈值分割法.pdf,388446,2009-09-27

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

发表评论

0 个回复

  • zhang-s-method-master
    说明:  张正相机标定,用c++编程,亲证有用,里面有实际的图片,大家可以直接俄使用(Zhang zheng method it is very useful for camera detecting and it contains many pictures i hope you will get help from it)
    2020-04-27 23:34:47下载
    积分:1
  • BFSPDFS
    广度优先搜索和深度优先搜索在网络拓扑图上的实现。广度优先搜索是从某一节点开始,搜索与其线连接的所有节点,按照广度方向像外扩展,直到不重复遍历所有节点;深度优先搜索是从某一节点开始,沿着其搜索到的第一个节点不断深入下去,当无法再深入的时候,回溯节点,然后再在回溯中的某一节点开始沿另一个方向深度搜索,直到不重复的遍历所有节点。 (Breadth-first search and depth-first search in the network topology is realized. Breadth-first search is started from a node, searching all the nodes connected to its line, in accordance with the breadth direction as extracapsular extension, until no repeat traverse all nodes depth-first search is started from a node along its search to the first nodes deepening it, when it can not go any further, backtracking node, and then back again in the beginning of a node depth search in the other direction until the non-repetition of the traverse all nodes.)
    2013-08-10 10:37:12下载
    积分:1
  • Tikhonov正则化超分辨率重建
    一个基于Tikhonov正则化超分辨率重建,可以成功运行。(A Tikhonov based regularized super resolution reconstruction can be successfully operated.)
    2018-04-08 12:02:12下载
    积分:1
  • chenggongchengxu
    rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h" #include <iostream.h> void main(float R, float G, float B, float& H, float& S, float&V) { // r,g,b values are from 0 to 1 // h = [0,360], s = [0,1], v = [0,1] // if s == 0, then h =-1 (undefined) float min, max, delta,tmp tmp = R>G?G:R min = tmp>B?B:tmp tmp = R>G?R:G max = tmp>B?tmp:B V = max // v delta = max- min if( max != 0 ) S = delta/max // s else { // r = g = b = 0 // s = 0, v is undefined S = 0 H = 0 return } if (delta == 0){ H = 0 return } else if(R == max){ if (G >= B) H = (G- B)/delta // between yellow & magenta else H = (G- B)/delta+ 6 } else if( G == max ) H = 2+ ( B- R )/delta // between cyan & yellow else if (B == ma)
    2011-12-02 10:09:24下载
    积分:1
  • RGBtoHIS
    说明:  RGB-IHS变换:图像进行 RGB-HIS 正变换,分别对明度、饱和度、色调进行线性 拉伸显示;然后再进行反变换 (RGB-IHS transformation: the image is RGB-HIS transformation, respectively, lightness, saturation, hue, a linear stretch display then the inverse transform)
    2021-04-11 18:48:57下载
    积分:1
  • NDVi
    遥感信息工程学院遥感原理与应用课程实习植被指数(Vegetation Index of Remote Sensing Principle and Application Course Practice)
    2019-05-24 08:39:38下载
    积分:1
  • pinghua
    实现对图像平滑模糊,有简单平滑、高斯模糊和中值滤波三种可选,基于OPenCV类库实现,代码可直接运行(Achieve a smooth blur the image, a simple smooth, Gaussian blur and median filtering three options, OPenCV-based library, the code can be run directly)
    2014-06-13 16:45:36下载
    积分:1
  • NumberRecognize
    根据RBM深度网络(Hinton,2006)进行MINST手写文字的分类器的训练,利用训练得到的权值制作了这个小程序,通过这个程序可以看出训练结果对数据集内的测试样本和训练样本都能进行很好的识别,但是对其他的手写字体识别就没有那么好了。(According to RBM depth network (Hinton, 2006) conducted MINST handwritten text classifier training, using the training to get the right value to produce this small program, this program can be seen through the results of the training data set and the training sample test samples are can be well identified, but on the other handwriting recognition is not so good.)
    2013-10-17 15:55:34下载
    积分:1
  • gh
    说明:  基于开源计算机视觉库OpenCV的图像处理基于开源计算机视觉库OpenCV的图像处理(Based on open source computer vision library OpenCV image processing based on open source computer vision library OpenCV image processing)
    2011-06-01 13:30:13下载
    积分:1
  • 1
    说明:  应用于fluent的UDF程序,用于修正液滴表面轮廓(The UDF is applied fluent procedures for correcting the droplet surface contour)
    2013-11-25 19:21:27下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载