1
私はIOTカメラにアクセスする際に問題があります。 カメラにアクセスする簡単なコードを作成して、そのカメラからライブストリーミングを表示してみてください。 それは のWindows 10のWindowsの携帯電話に10 & &を動作しますが、IOTデバイス上でそれをしようとすると、私はエラーを得た、それは見つかりませんデバイス」を言わない カメラはここhere in this linkUWP IOT、カメラに接続する方法、USBカメラではない
のようなものですコード
です
private async Task StartPreviewAsync()
{
try
{
mediaCapture = new MediaCapture();
var allVideoDevices = await DeviceInformation.FindAllAsync(DeviceClass.VideoCapture);
var count = allVideoDevices.Count;
System.Diagnostics.Debug.WriteLine(count+"Video Capture Device");
await mediaCapture.InitializeAsync();
PreviewControl.Source = mediaCapture;
await mediaCapture.StartPreviewAsync();
}
catch (UnauthorizedAccessException)
{
// This will be thrown if the user denied access to the camera in privacy settings
System.Diagnostics.Debug.WriteLine("The app was denied access to the camera");
}
catch (Exception)
{
System.Diagnostics.Debug.WriteLine("MediaCapture initialization failed.");
}
}
//protected async override void OnNavigatedFrom(NavigationEventArgs e)
//{
// await CleanupCameraAsync();
//}
protected async override void OnNavigatedTo(NavigationEventArgs e)
{
StartPreviewAsync();
}
私の問題についてお答えしますか?