Lumia Imaging SDK 3.0 移动模拟器 10 上的 GrayscaleEffect() 快速启动错误

Lumia Imaging SDK 3.0 Quick Start error on GrayscaleEffect() on Mobile Emulator 10

我正在测试 Lumia Imaging SDK 3.0 quick start sample

示例在我的桌面上运行良好,但在移动模拟器 10 上 运行 时出现此错误。

 public MainPage()
    {
        this.InitializeComponent();


        double scaleFactor = 1.0;
        scaleFactor = DisplayInformation.GetForCurrentView().RawPixelsPerViewPixel;

        _writeableBitmap = new WriteableBitmap((int)(Window.Current.Bounds.Width * scaleFactor), (int)(Window.Current.Bounds.Height * scaleFactor));
        _thumbnailImageBitmap = new WriteableBitmap((int)OriginalImage.Width, (int)OriginalImage.Height);
        _grayscaleEffect = new GrayscaleEffect();
        _brightnessEffect = new BrightnessEffect(_grayscaleEffect);
        m_renderer = new SwapChainPanelRenderer(_brightnessEffect, SwapChainPanelTarget);

        LoadDefaultImageAsync();
    }

_grayscaleEffect = new GrayscaleEffect(); 行引发了错误。 System.IO.FileNotFoundException

at System.StubHelpers.StubHelpers.GetWinRTFactoryObject(IntPtr pCPCMD)
at Lumia.Imaging.Adjustments.GrayscaleEffect..ctor()
at QuickStart.MainPage..ctor()
at QuickStart.QuickStart_XamlTypeInfo.XamlTypeInfoProvider.Activate_0_MainPage()
at QuickStart.QuickStart_XamlTypeInfo.XamlUserType.ActivateInstance()

我没有用于 Windows 10 移动设备的物理设备来测试。我错过了什么?

感谢您的反馈。我可以在使用 Mobile Emulator 10.0.10586 时重现您的问题。但是当我在真实设备上测试它时,该示例运行良好。设备的 OS 内部版本也是 10586。此问题可能与移动模拟器有关。我们已将此报告给 SDK 团队。一旦我获得更多信息,我会在这里更新。

目前,您可以使用本地计算机测试您的代码,或者如果您有物理设备,则可以在您的设备上进行测试。