pythonhist图颜色_使用python中的cv2.calcHist目录中多个图像的颜色直方图

更新时间:2023-07-20 18:34:36 阅读: 评论:0

pythonhist图颜⾊_使⽤python中的cv2.calcHist⽬录中多个图
像的颜⾊直⽅图
奥运会英语
上⾯的代码有⼀些⼩的修改,我在test⽂件夹中绘制了两个虚拟图像的直⽅图。在import matplotlib.pyplot as plt
import cv2
import os
暖和的什么images = []
path = "../Mission Begins/test/"
for image in os.listdir(path):
images.append(image)
for image in images:
img = cv2.imread("%s%s"%(path, image)) # Load the image
初中封闭学校
channels = cv2.split(img) # Set the image channels
colors = ("b", "g", "r") # Initialize tuple掩目捕雀
plt.figure()
plt.title("Color Histogram")
plt.xlabel("Bins")
plt.ylabel("Number of Pixels")
for (i, col) in zip(channels, colors): # Loop over the image channels专题摄影
hist = cv2.calcHist([i], [0], None, [256], [0, 256]) # Create a histogram for current channel
vlookup函数应用
plt.plot(hist, color = col) # Plot the histogram
plt.xlim([0, 256])
输⼊图像
领养小猫直⽅图
输⼊图像
石蛙养殖技术
直⽅图

本文发布于:2023-07-20 18:34:36,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1107380.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:绘制   石蛙   封闭
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图