■ Image 클래스에서 대비 증가를 조정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
using Emgu.CV; using Emgu.CV.Structure; double contrast = 30.0; Image<Bgr, byte> sourceImage = new Image<Bgr, byte>("c:\\source.jpg"); Image<Bgr, byte> targetImage = sourceImage.Convert<byte> ( delegate(byte value) { return (byte)(255.0 / (255.0 - 2.0 * contrast) * (value - contrast)); } ); sourceImageBox.Image = sourceImage; targetImageBox.Image = targetImage; |