当前位置:   article > 正文

Python 图像处理OpenCV:直方图均衡化(笔记)_python 直方图均值化

python 直方图均值化

进行了直方图的均衡化和限制对比度的直方图均衡化。

代码如下:

import cv2 as cv
import matplotlib.pyplot as plt
# 直方图均衡化
def img_histogram_balance(img):
    img_gray = cv.cvtColor(img, cv.COLOR_BGR2GRAY)
    # cv.equalizeHist(src) 用于实现图像的直方图均衡化,其输入是灰度图像,输出的是直方图均衡化的图像。
    result = cv.equalizeHist(img_gray)
    plt.title("Origin")
    plt.subplot(121)
    plt.imshow(img_gray)
    # 绘制原始直方图
    plt.subplot(122)
    plt.hist(img_gray.ravel(), 256)
    plt.show()
    plt.title("equalize")
    plt.subplot(121)
    plt.imshow(result)
    # 绘制均衡化直方图
    plt.subplot(122)
    plt.hist(result.ravel(), 256)
    plt.show()
# 限制对比度的直方图均衡化
def limit_histogram_balance(img):
    img_gray = cv.cvtColor(img, cv.COLOR_BGR2GRAY)
    '''
    cv.createCLAHE(clipLimit,tileGridSize) 限制对比度的自适应直方图均衡化
        clipLimit:颜色对比度的阈值
        tileGridSize:均衡化的网格大小,即在多少网格下进行直方图的均衡化操作,常用大小是8×8的矩阵。
    '''
    clahe = cv.createCLAHE(clipLimit=30, tileGridSize=(8, 8))
    result = clahe.apply(img_gray)
    plt.title("limit_equalize_img")
    plt.subplot(121)
    plt.imshow(result)
    plt.subplot(122)
    plt.hist(result.ravel(), 256)
    plt.show()
if __name__ == '__main__':
    img = cv.imread("./image/fengjing.jpg")
    img_histogram_balance(img)
    limit_histogram_balance(img)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41

运行结果:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
上述进行了直方图的均衡化和限制对比度的直方图均衡化

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

闽ICP备14008679号