MemoryStream memstream = new MemoryStream();
bitmap2.Save(memstream, System.Drawing.Imaging.ImageFormat.Png);
KalikoImage imgklk = new KalikoImage(memstream);
imgklk.ApplyFilter(new UnsharpMaskFilter(150f, 100f, 200));
imgklk.SavePng(memstream);
Bitmap bitmap3 = new Bitmap(memstream);
This is my code for filtering my bitmap2 image.But when i use unsharp on imgklk,i feel filtering is aplied because there is noticeably time passing program to return back but im unable to see it on bitmap3,i mean there is no difference between bitmap 2 and bitmap 3.I hope you can help me:)
This is my code for filtering my bitmap2 image.But when i use unsharp on imgklk,i feel filtering is aplied because there is noticeably time passing program to return back but im unable to see it on bitmap3,i mean there is no difference between bitmap 2 and bitmap 3.I hope you can help me:)