Histogram Equalization AForge 공유 링크 만들기 Facebook X Pinterest 이메일 기타 앱 12월 18, 2017 // create filter HistogramEqualization filter = new HistogramEqualization( ); // process image filter.ApplyInPlace( sourceImage ); 공유 링크 만들기 Facebook X Pinterest 이메일 기타 앱 댓글 제갈식2017년 12월 18일 오후 6:27// create filterBrightnessCorrection filter = new BrightnessCorrection( -50 );// apply the filterfilter.ApplyInPlace( image );답글삭제답글답글댓글 추가더 로드하기... 댓글 쓰기
2D FFT of Gray Image by AForge 12월 17, 2017 using System; using System.Drawing; using System.Windows.Forms; using AForge; using AForge.Imaging; using AForge.Imaging.Filters; using AForge.Imaging.ComplexFilters; namespace tt { class MainClass { public static void Main ( string [] args ) { // load image Bitmap image = AForge.Imaging. Image . FromFile ( @" /Users/kerb/rose.jpg " ); // create complex image ComplexImage complexImage =... 자세한 내용 보기
FFT for .Net Compare 12월 17, 2017 https://www.codeproject.com/Articles/1095473/Comparison-of-FFT-implementations-for-NET 자세한 내용 보기
// create filter
답글삭제BrightnessCorrection filter = new BrightnessCorrection( -50 );
// apply the filter
filter.ApplyInPlace( image );