i study the ariticle where is in the https://library.vuforia.com/articles/Training/Getting-Started-with-Vuforia-for-Windows-10-Development.html.
Now my app run perfectly in Vuforia 5.5.9 with Unity5.4.0f .
In unity Editor ,I can use CameraDevice.Instance.SetFrameFormat(Image.PIXEL_FORMAT.RGBA8888, true); to register FrameFormat Successfully.And ,to update profiles.xml files(Vuforia\Editor\WebcamProfiles, i use with Logitech HD Webcam 920),the Vuforia' API Vuforia.Image image = CameraDevice.Instance.GetCameraImage(Image.PIXEL_FORMAT.RGBA8888); can return a image.The Image is not null,and its width and heigth is 1920 and 1080.
But when i deploy it to the UWP,
CameraDevice.Instance.SetFrameFormat(Image.PIXEL_FORMAT.RGBA8888, true)
return false;
Vuforia.Image image = CameraDevice.Instance.GetCameraImage(Image.PIXEL_FORMAT.RGBA8888);
return NULL;
Why???
On what kind of device with UWP you want to run your app?