登录
首页 » Visual C++ » OTSUMultiThre

OTSUMultiThre

于 2009-02-06 发布 文件大小:303KB
0 140
下载积分: 1 下载次数: 116

代码说明:

  1.本程序功能包含显示直方图,OTSU的单值分割,OTSU的二值分割,OTSU的三值分割 2.在OTSU的分割时,通常情况下我们是通过类间方差得到一个分割阈值,但是有时候我们需要得到各灰度级别的目标,那么采取多值分割是 很必要的,通过改进得到OTSU的多值分割方法 3.本程序另外还有显示直方图,计算程序运行时间,处理结果以新的窗口显示等细节,这部分适合MFC初学者。(1. This procedure shows the histogram feature, OTSU single segmentation, OTSU binary segmentation, OTSU three segmentation 2. OTSU segmentation, it is usually the case we are through the between-cluster variance by a partition threshold , but sometimes we need to be the gray level of the target, then the multi-segmentation is necessary, through improved access to multi-OTSU segmentation methods 3. This procedure in addition to show the histogram to calculate run time, treatment the results of a new window display the details of this part of MFC for beginners.)

文件列表:

OTSUMultiThre
.............\CDib.cpp
.............\CDib.h
.............\ChildFrm.cpp
.............\ChildFrm.h
.............\comlib.cpp
.............\comlib.h
.............\DlgIntensity.cpp
.............\DlgIntensity.h
.............\MainFrm.cpp
.............\MainFrm.h
.............\ReadMe.txt
.............\res

.............\...\Segment.rc2

.............\...\Thumbs.db

.............\Resource.h
.............\Segment.aps
.............\Segment.clw
.............\Segment.cpp
.............\Segment.dsp
.............\Segment.dsw
.............\Segment.h
.............\Segment.ncb
.............\Segment.opt
.............\Segment.plg
.............\Segment.rc
.............\SegmentDoc.cpp
.............\SegmentDoc.h
.............\SegmentMethod.cpp
.............\SegmentMethod.h
.............\SegmentView.cpp
.............\SegmentView.h
.............\StdAfx.cpp
.............\StdAfx.h
.............\实验用图





.............\说明.txt

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

发表评论

0 个回复

  • PCA
    这是关于pca的文件,说明实现pca的降维(This is the file on pca, achieve pca dimensionality reduction)
    2020-07-02 01:40:01下载
    积分: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
  • zhengxuan
    一款VC++图像开场加载效果,向大家演示了几种图像装载的特效实现的方法,比如扫描显示、滑动显示、渐入显示和马赛克显示等,大家在使用一些幻灯片软件的时候,经学会看到类似的效果,如果你有一定的VC++基础,你可以借鉴一下本效果的具体方法,再次扩展,可以制作出一款带特效的图像查看器(The opening loading effect of a VC++ image to demonstrate the effects achieved in several image loading, such as scanning, slide show, getting into the display and mosaic display, we learn to look at some slides software to similar effect, if you have certain VC++ basis, you can learn about the effects of specific methods, extended again, can create the image of a band effects Viewer)
    2012-11-08 19:51:35下载
    积分:1
  • Li-Yi-Wei-Texture-Synthesis
    基于样本的纹理合成加速方法,MRF,基于Li-Yi Wei的论文。(Acceleration method based on texture synthesis samples, MRF, based on Li-Yi Wei of paper.)
    2021-03-11 15:09:25下载
    积分:1
  • OpenCVsurf
    opencv是图像处理中常用到的工具箱,本资料为基于此工具箱的图像处理匹配算法SURF的实现代码。(opencv is commonly used in image processing to the toolbox, the toolbox based on this information for the image processing algorithm to match the achievement of SURF code.)
    2009-06-22 15:46:18下载
    积分:1
  • MeanShiftSegMent
    根据D. Comaniciu, P. Meer: Mean Shift: A robust approach toward feature space analysis 以及 C. Christoudias, B. Georgescu, P. Meer: Synergism in low level vision.这两篇文献提供的方法编写的图像分割代码,作者是 Chris M. Christoudias, Bogdan Georgescu,代码经我看了后加了丰富的中文注释,希望可以给各位带来阅读上的方便。 基于meanshift的聚类分割方法包括滤波、区域融合等操作,通过调整sigma和sigmar来调整分割效果。(According to D. Comaniciu, P. Meer: Mean Shift: A robust approach toward feature space analysis, and C. Christoudias, B. Georgescu, P. Meer: Synergism in low level vision. These two documents prepared by the methods provided by image segmentation code , the author is Chris M. Christoudias, Bogdan Georgescu, after I read the code, add a rich Chinese notes, hoping to bring you the convenience of reading. Segmentation method based on clustering meanshift including filtering, regional integration and other operations, and by adjusting the sigma sigmar to adjust segmentation results.)
    2013-07-30 19:01:52下载
    积分:1
  • Triangle_Renderer_Project
    老外写的程序,可对三角形进行渲染,有详细的算法介绍。非常棒(A good Triangle Renderer Project,with detailed introduction.)
    2011-04-22 09:18:28下载
    积分:1
  • erode
    C语言数学形态学的腐蚀运算,同时适用于二值图像与灰度图像。(C language mathematical morphology erosion operation also apply to binary images and gray-scale image.)
    2009-11-14 14:43:40下载
    积分:1
  • ImageMatch
    摄影测量中影像匹配小程序,附带两幅图片,比较实用(Photogrammetry image matching small program, with two pictures, more practical)
    2016-04-29 20:03:43下载
    积分:1
  • m
    说明:  用Visual C++实现模糊图像恢复处理程序实例(Using Visual C++ fuzzy image restoration processing examples)
    2009-10-17 20:48:58下载
    积分:1
  • 696522资源总数
  • 104019会员总数
  • 37今日下载