Bitmap image = ... // Lena's famous picture // Create a new Haar Wavelet transform filter var wavelet = new WaveletTransform( new Haar( 1 )); // Apply the Wavelet transformation Bitmap result = wavelet.Apply(image); // Show on the screen ImageBox.Show(result);
// create filter
답글삭제BrightnessCorrection filter = new BrightnessCorrection( -50 );
// apply the filter
filter.ApplyInPlace( image );