- 1、本文档共3页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
OTSU 算法可以说是自适应计算单阈值
/*OTSU 算法可以说是自适应计算单阈值(用来转换灰度图像为二值图像)的简单高效方法。下面的代码最早由 Ryan Dibble提供,此后经过多人Joerg.Schulenburg, R.Z.Liu 等修改,补正。算法对输入的灰度图像的直方图进行分析,将直方图分成两个部分,使得两部分之间的距离最大。划分点就是求得的阈值。parameter: *image --- buffer for imagerows, cols --- size of imagex0, y0, dx, dy --- region of vector used for computing thresholdvvv --- debug option, is 0, no debug information outputed
复制内容到剪贴板
代码:
*//*======================================================================*//* OTSU global thresholding routine *//* takes a 2D unsigned char array pointer, number of rows, and *//* number of cols in the array. returns the value of the threshold *//*======================================================================*/int otsu (unsigned char *image, int rows, int cols, int x0, int y0, int dx, int dy, int vvv){unsigned char *np; // 图像指针int thresholdValue=1; // 阈值int ihist[256]; // 图像直方图,256个点int i, j, k; // various countersint n, n1, n2, gmin, gmax;double m1, m2, sum, csum, fmax, sb;// 对直方图置零...memset(ihist, 0, sizeof(ihist));gmin=255; gmax=0;// 生成直方图for (i = y0 + 1; i y0 + dy - 1; i++) {np = image[i*cols+x0+1];for (j = x0 + 1; j x0 + dx - 1; j++) {ihist[*np]++;if(*np gmax) gmax=*np;if(*np gmin) gmin=*np;np++; /* next pixel */}}// set up everythingsum = csum = 0.0;n = 0;for (k = 0; k = 255; k++) {sum += (double) k * (double) ihist[k]; /* x*f(x) 质量矩*/n += ihist[k]; /* f(x) 质量 */}if (!n) {// if n has no value, there is problems...fprintf (stderr, NOT NORMAL thresholdValue = 160\n);return (160);}// do the otsu global thresholding methodfmax = -1.0;n1 = 0;for (k = 0; k 255; k++) {n1 += ihist[k];if (!n1) { continue; }n2 = n - n1;if (n2 == 0) { break; }csum += (double) k *ihist[k];m1 = csum / n1;m2 = (sum - csum) / n2;sb = (double) n1 *(double) n2 *(m1 - m2) * (m1 - m2);/* bbg: note: can be optimized. */if (sb fmax) {fmax = sb;thresholdValue = k;}}// at this point we have our thresholding value// debug code to display thresholding valu
您可能关注的文档
最近下载
- 2024年江苏省南京市中考物理试题卷(含答案解析).docx
- 八年级美术上册5静物画有声教案省公开课一等奖新名师优质课获奖PPT课件.pptx
- 电子鼓hd3中文说明书.pdf
- 2024年江苏省南京市中考数学试题卷(含答案解析).docx
- 通桥(2018)1301-Ⅲ时速250公里、350公里高速铁路无砟轨道(16+24+16)m钢筋混凝土刚构连续梁.pdf
- 2024年武汉市城市建设投资开发集团限公司招聘【221人】公开引进高层次人才和急需紧缺人才笔试参考题库(共500题)答案详解版.docx
- 12.《玩偶之家(节选)》课件 统编版高中语文选择性必修中册.pptx
- 眼部健康保养.ppt VIP
- 急性一氧化碳中毒诊治专家共识.pptx
- 心内科常见疾病护理常规ppt.pptx
文档评论(0)