欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

初学者的困惑

程序员文章站 2022-04-09 22:21:57
...

@opencv-python
简单的直方图操作1

# 直方图简单操作

import cv2 as cv
import matplotlib.pyplot as plt
import numpy as np


# 创建一个函数用于显示图像
def readshow(img, name):
    cv.imshow('name', img)


# 读入原图以彩色rgb方式显示
img = cv.imread('t4.jpg',1)
print(img.shape[:2])
# 创建颜色通道,分离颜色通道
color = ('b', 'g', 'r')

'''
# 创建枚举,这里枚举的索引1,2,3赋值到i,颜色信心赋值到color值,选择划线的颜色值
for i,col in enumerate(color):
    hist1 =cv.calcHist([img], [i], None, [256], [0,256])
    plt.plot(hist1, color = col)
    # 改变坐标轴x的最小和最大值
    plt.xlim([0,256])
'''

mask = np.zeros(img.shape[:2], np.uint8)
mask[100:200, 200:400] = 255
mask_img = cv.bitwise_and(img, img, mask=mask)

readshow(mask_img, mask_img)
# readshow(mask,mask)
#plt.hist(img.ravel(), 256)
# plt.show()


cv.waitKey(0)
cv.destroyAllWindows()