当前位置:   article > 正文

【图像分割】使用Otsu 算法及迭代计算最佳全局阈值估计并实现图像分割(代码实现与分析)_迭代otsu算法

迭代otsu算法

        本实验要求理解全局阈值分割的概念,并实现文本图像分割。需要大家深入理解Ostu 算法的实现过程及其迭代原理,同时通过学习使用Otsu 算法及其迭代,实践图像分割技术在文本图像处理中的应用。

        以下将从实验原理、实验实现、实验结果分析三部分对整个实验进行阐述

实验原理

全局阈值分割原理

        全局阈值分割是一种基于灰度图像的简单分割方法。其基本思想是根据一个固定的阈值T,将图像中的每个像素点的灰度值与阈值T进行比较。如果像素点的灰度值大于或等于T,则将其归为前景(通常表示感兴趣的物体或区域);否则,将其归为背景。

Otsu算法原理

        Otsu算法是一种自动选择全局阈值的方法,它通过最大化类间方差(inter-class variance)来确定最优的阈值。类间方差反映了前景和背景两类像素之间的差异程度,差异越大,说明分割效果越好。

以下是Otsu算法的具体步骤:

        a. 计算图像的灰度直方图:直方图表示了图像中各个灰度级像素出现的频率。

        b. 计算各类别的概率:对于每一个可能的阈值T,可以将图像分为两个类别,一类是灰度值小于T的像素,另一类是灰度值大于或等于T的像素。计算这两个类别的像素数(或者像素的概率)。

        c. 计算类间方差:类间方差定义为两类像素的平均灰度值之差的平方乘以两类像素的概率之和。类间方差越大,说明两类像素的差异越大,分割效果越好。

        d. 寻找最优阈值:遍历所有可能的阈值,对于每个阈值,计算其对应的类间方差。选择使类间方差最大的那个阈值作为最佳全局阈值。

图像分割实现

        利用计算出的最佳全局阈值,对原始图像进行二值化处理,即根据阈值将每个像素点的灰度值转换为0(背景)或1(前景),从而实现图像的分割。

实验实现

输入图像

在本次实验中,小组选取了三幅灰度图片作为实验的输入图像,如下图所示。

实验代码 

        利用Python实现Otsu算法及其迭代方法。对于输入的图像,首先生成它的一个渐变灰度图像,接着计算图像的直方图,并基于直方图使用Otsu方法和迭代方法分别寻找最佳的阈值。

  1. import cv2
  2. import numpy as np
  3. import os
  4. def get_file_paths(folder_path):
  5. # 获取文件夹内所有文件的路径
  6. file_paths = [os.path.join(folder_path, file) for file in os.listdir(folder_path) if os.path.isfile(os.path.join(folder_path, file))]
  7. return file_paths
  8. def generate_gradient_image(width, height):
  9. # 生成渐变灰度图像数据
  10. gradient_image = np.zeros((height, width), dtype=np.uint8)
  11. # 计算每一列的亮度值
  12. for col in range(width):
  13. brightness = int(255 * col / width)
  14. gradient_image[:, col] = brightness
  15. return gradient_image
  16. def save_image(image, file_path):
  17. # 保存图像
  18. cv2.imwrite(file_path, image)
  19. def iterative_thresholding(image, epsilon=1e-6, max_iter=100):
  20. # 初始阈值
  21. threshold = 128.0
  22. for _ in range(max_iter):
  23. # 根据当前阈值将图像二值化
  24. binary_image = image > threshold
  25. # 计算前景和背景的平均灰度
  26. mean_foreground = np.mean(image[binary_image])
  27. mean_background = np.mean(image[~binary_image])
  28. # 计算新的阈值
  29. new_threshold = 0.5 * (mean_foreground + mean_background)
  30. # 如果新旧阈值之间的差异小于 epsilon,停止迭代
  31. if abs(new_threshold - threshold) < epsilon:
  32. break
  33. threshold = new_threshold
  34. return threshold
  35. def otsu_thresholding(image): # 计算otsu全局最优阈值
  36. # 计算直方图
  37. hist, bins = np.histogram(image.flatten(), 256, [0, 256])
  38. # 归一化直方图
  39. hist = hist.astype(float) / sum(hist)
  40. # 初始化类内方差和类间方差
  41. var_within = np.zeros(256)
  42. var_between = np.zeros(256)
  43. for t in range(1, 256):
  44. # 类内方差
  45. w0 = sum(hist[:t])
  46. w1 = sum(hist[t:])
  47. mu0 = sum(i * hist[i] for i in range(t)) / w0 if w0 > 0 else 0
  48. mu1 = sum(i * hist[i] for i in range(t, 256)) / w1 if w1 > 0 else 0
  49. var_within[t] = w0 * w1 * (mu0 - mu1) ** 2
  50. # 类间方差
  51. var_between[t] = w0 * w1 * (mu0 - mu1) ** 2
  52. # 找到最佳阈值
  53. optimal_threshold = np.argmax(var_between)
  54. return optimal_threshold
  55. def threshold(image_path): # 生成阈值化图像
  56. # 读取图像
  57. img = cv2.imread(image_path, cv2.IMREAD_GRAYSCALE)
  58. image_path=image_path[5:]
  59. # 应用Otsu方法获取最佳阈值
  60. otsu_threshold = otsu_thresholding(img)
  61. # print(f"threshold:{threshold}")
  62. # 使用阈值进行二值化
  63. print(f'otsu_threshold:{otsu_threshold}')
  64. _, binary_image = cv2.threshold(img, otsu_threshold, 255, cv2.THRESH_BINARY)
  65. # 保存阈值化图像
  66. save_image(binary_image, f'Otsu_{image_path}')
  67. iterative_threshold = iterative_thresholding(img)
  68. # print(f"threshold:{threshold}")
  69. # 使用阈值进行二值化
  70. print(f'iterative_threshold:{iterative_threshold}')
  71. _, binary_image = cv2.threshold(img, iterative_threshold, 255, cv2.THRESH_BINARY)
  72. # 保存阈值化图像
  73. save_image(binary_image, f'iterative_{image_path}')
  74. print(f'{image_path[:-4]}测试已完成')
  75. if __name__ == '__main__':
  76. # # 设置图像的宽度和高度
  77. # width = 640
  78. # height = 480
  79. # # 生成渐变图像
  80. # image = generate_gradient_image(width, height)
  81. # # 保存图像
  82. # save_image(image, 'exam0.jpg')
  83. folder_path = 'exam'
  84. # 获取文件夹内所有文件的路径
  85. exam_paths = get_file_paths(folder_path)
  86. # 依次测试图像
  87. for image_path in exam_paths:
  88. print(f'image_name:{image_path[5:]}')
  89. threshold(image_path)

实验结果分析 

对于三幅图像使用Otsu方法和迭代方法进行全局阈值分割的实验结果和分析如下:

(1)图像一处理结果

        由上图第一组实验结果可以看出,对于灰度分布规律简单的图像,全局分割的阈值寻找较为简单,利用Otsu算法和迭代算法的效果几乎没有区别。 

(2)图像二处理结果

        如上图所示,第二组实验中,Otsu算法和迭代方法在作用于灰度值分界较为明显的图像上时均取得了很好的分割效果。 

(3)图像三处理结果

        由上图所示第三组实验可以看出,即使是边界并不是非常清晰的图片,Otsu方法和迭代方法也都能取得很好的分割效果。


以上为本次实验的全部内容~

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/592641
推荐阅读
相关标签
  

闽ICP备14008679号