Bitmap input = ...;
// Create a new Gabor filter
GaborFilter filter = new GaborFilter();
// Apply the filter
Bitmap output = filter.Apply(input);
// Show the output
ImageBox.Show(output);
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);
댓글
댓글 쓰기