OpenCV:如何增加色彩通道

时间:2013-09-16 10:33:12

标签: c# c++ opencv aforge

在RGB图像中(来自网络摄像头)我正在寻找一种增加绿色强度/亮度的方法。很高兴,如果有人能给出一个起点。

我在C#和/或OpenCV中直接在C ++中使用AFORGE.NET。

3 个答案:

答案 0 :(得分:1)

通常,像素值的乘法虽然是对比度的增加,但是增加虽然是亮度的增加。

在c#

你有一个数组到图像中的第一个像素,如下所示:

byte[] pixelsIn;  
byte[] pixelsOut; //assuming RGB ordered data

和对比度和亮度值如下:

float gC = 1.5;
float gB = 50;

你可以乘法和/或加到绿色通道上以达到你想要的效果:( r - row,c - column,ch - nr of channels)

pixelsOut[r*w*ch + c*ch]   = pixelsIn[r*w*ch + c*ch] //red
int newGreen = (int)(pixelsIn[r*w*ch + c*ch+1] * gC + gB);  //green
pixelsOut[r*w*ch + c*ch+1] = (byte)(newGreen > 255 ? 255 : newGreen < 0 ? 0 : newGreen); //check for overflow
pixelsOut[r*w*ch + c*ch+2] = pixelsIn[r*w*ch + c*ch+2]//blue
很明显,你会想在这里使用指针加快速度。

(请注意:此代码尚未经过测试)

答案 1 :(得分:0)

对于AFORGE.NET,我建议使用ColorRemapping类将绿色通道中的值映射到其他值。如果你想在不丢失细节的情况下增加亮度,映射函数应该是从[0,255]到[0,255]的凹函数。

答案 2 :(得分:0)

这是我在阅读AForge.NET和OpenCV文档的许多页面后想出的。如果先应用饱和度过滤器,可能会出现晕眩图像。如果您稍后应用它,您将获得更清晰的图像,但在应用HSV滤波器之前可能会丢失一些“浅绿色”像素。

                        // apply saturation filter to increase green intensity
                        var f1 = new SaturationCorrection(0.5f);
                        f1.ApplyInPlace(image);

                        var filter = new HSLFiltering();
                        filter.Hue = new IntRange(83, 189);         // all green (large range)
                        //filter.Hue = new IntRange(100, 120);      // light green (small range)

                        // this will convert all pixels outside the range into gray-scale
                        //filter.UpdateHue = false;
                        //filter.UpdateLuminance = false;

                        // this will convert all pixels outside that range blank (filter.FillColor)
                        filter.Saturation = new Range(0.4f, 1);
                        filter.Luminance = new Range(0.4f, 1);

                        // apply the HSV filter to get only green pixels
                        filter.ApplyInPlace(image);