OpenCV 2D Histogram

本文介绍了如何使用OpenCV和Numpy进行2D直方图的计算与绘制。2D直方图不同于一维直方图,它需要考虑色调(Hue)和饱和度(Saturation)。在OpenCV中,通过cv2.calcHist()方法处理H和S通道,设置相应参数。而在Numpy中,可以使用np.histogram2d()函数。最后,利用matplotlib.pyplot.imshow()以不同颜色映射绘制2D直方图,以便更直观地理解每个点所代表的数值,x轴表示S值,y轴表示H值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

2D Histogram

One dimensional histogram only needs to consider gray value, but 2D histogram needs to consider hue and saturation.


2D histogram in OpenCV
The parameters of cv2.calcHist() method are different between one-dimensional histogram and 2D histogram,parameters should be modified as follows:

  • channels = [0, 1] :We need to deal with both H and S channels at the same time
  • bins = [180, 256]: 180 for H channel and 256 for S channel
  • range = [0, 180, 0, 256]: The value range of H is 0 to 180, and the value range of S is 0 to 256
import cv2
import numpy 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小鹏AI

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值