Gabor filter by accord

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);
 
 

댓글

이 블로그의 인기 게시물

Draw Circle on PictureBox when Button Click - Winform

2D FFT of Gray Image by AForge