如何使用WriteableBitmapEx卷积图像

时间:2013-09-25 01:07:54

标签: c# image windows-phone-7 windows-phone-8 writeablebitmapex

我想使用WriteableBitmapEx来卷积图像。在我的实现中,我收到了一张图片,但我无法区分。

MainPage.xaml.cs中

public WriteableBitmap Process(WriteableBitmap input)
    {
        WriteableBitmap finalbmp = WriteableBitmapExtensions.Convolute(input, WriteableBitmapExtensions.KernelSharpen3x3);
        return finalbmp;
    }

我在这里做错了吗?

0 个答案:

没有答案