我正在一个实施AForge的项目中,想要应用色相/饱和度/亮度效果。
我尝试使用现有的AForge序列过滤器,但没有得到像PhotoShop这样的结果。
我应该使用哪种/哪种过滤器组合?
FiltersSequence filter = new FiltersSequence(
new BrightnessCorrection(b),
new SaturationCorrection(s),
new ContrastCorrection(c)
);
pictureBox2.Image = filter.Apply((Bitmap)pictureBox1.Image);