opencv maximum" differentation"伪彩色表

时间:2016-07-12 14:16:05

标签: algorithm opencv

我正在寻找一种算法来创建一个假色表。当然我们可以使用像

这样的东西
void ImgCoreQCV::GeneratePseudocolorTab(vector<Vec3b> &vec, int iNColor)
{
   for(int i=0; i<iNColor; i++){
        int b = theRNG().uniform(0, 255);
        int g = theRNG().uniform(0, 255);
        int r = theRNG().uniform(0, 255);

    /*int b = rand()&255;
    int r = rand()&255;
    int g = rand()&255;*/

    vec.push_back(Vec3b((uchar)b, (uchar)g, (uchar)r));
    }
}

但经常生成的颜色非常相似。也许有一种算法,其中颜色感知之间的差异是最大的?

0 个答案:

没有答案