opencv中的calchist函数如何返回图像的直方图呢

opencv中的calchist函数如何返回图像的直方图呢

本文介绍了opencv中的calchist函数如何返回图像的直方图呢?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

calcHist(&srcImage,1,c,_mask,histMat,_channels.size(),h,(const float **)范围,true,累加);

该函数中每个参数的含义是什么,如何获取每个参数的值
我不明白哪些通道,范围,遮罩,c,h和累加以及这些值如何
我只有我需要的图像直方图

在此先感谢

calcHist(&srcImage,1,c,_mask,histMat,_channels.size(),h,(const float **)ranges, true, accumulate);

what is the meaning of each parameter in this function and how can i get the value of each
i don''t understand what channels, ranges, mask, c, h, and accumulate and what about these values
i have just the image which i need it''s histogram

thanks in advance

推荐答案


这篇关于opencv中的calchist函数如何返回图像的直方图呢?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 23:15