使用C#和EmguCV为图像提取RGB颜色直方图

时间:2015-05-13 01:22:42

标签: c# c++ emgucv

我正在尝试使用C#(或C ++)和Emgu CV为图像提取RGB颜色直方图。电流:

didSet

1 个答案:

答案 0 :(得分:3)

无需重新发明轮子。使用EmguCV中已有的函数CalcHist

C#:

public static void CalcHist(
    IInputArray images,
    int[] channels,
    IInputArray mask,
    IOutputArray hist,
    int[] histSize,
    float[] ranges,
    bool accumulate
)

<强> C ++:

public:
static void CalcHist(
    IInputArray^ images, 
    array<int>^ channels, 
    IInputArray^ mask, 
    IOutputArray^ hist, 
    array<int>^ histSize, 
    array<float>^ ranges, 
    bool accumulate
)

你去吧!