如何访问从 raspberry pi windows 10 iot 上的网络摄像头捕获的图像
how to access image captured from webcam on raspberry pi windows 10 iot
我想使用 windows 10 iot
内核访问树莓派 pi2
上的一些文件。
我想知道如何使用地址吗?
windows 中有驱动器和目录可以使用这样的地址访问 c:\a\b\c.txt
。
ms-iot
文件系统和地址是如何组织的?
我也搜索了存储卡,但找不到我确定存在于其中的文件。该文件是从网络摄像头按语法捕获并通过 belo 代码保存在设备上的图片
takePhoto.IsEnabled = false;
recordVideo.IsEnabled = false;
captureImage.Source = null;
photoFile = await KnownFolders.PicturesLibrary.CreateFileAsync(
PHOTO_FILE_NAME, CreationCollisionOption.GenerateUniqueName);
ImageEncodingProperties imageProperties = ImageEncodingProperties.CreateJpeg();
await mediaCapture.CapturePhotoToStorageFileAsync(imageProperties, photoFile);
takePhoto.IsEnabled = true;
status.Text = photoFile.Path;
IRandomAccessStream photoStream = await photoFile.OpenReadAsync();
BitmapImage bitmap = new BitmapImage();
bitmap.SetSource(photoStream);
captureImage.Source = bitmap;
我使用status.text
中的路径访问文件但是没有文件
提前致谢
您可以尝试通过网络上的 UNC 路径访问本地文件系统。因为它是 Windows OS,所以它具有默认的管理员共享。
例如:\192.168.1.123\C$
这将提示输入设备的管理员用户详细信息。
另请查看此博客 post,了解通过 IoT 仪表板访问它的方法:http://www.purplefrogsystems.com/paul/2016/06/controlling-your-windows-10-iot-core-device/
我想使用 windows 10 iot
内核访问树莓派 pi2
上的一些文件。
我想知道如何使用地址吗?
windows 中有驱动器和目录可以使用这样的地址访问 c:\a\b\c.txt
。
ms-iot
文件系统和地址是如何组织的?
我也搜索了存储卡,但找不到我确定存在于其中的文件。该文件是从网络摄像头按语法捕获并通过 belo 代码保存在设备上的图片
takePhoto.IsEnabled = false;
recordVideo.IsEnabled = false;
captureImage.Source = null;
photoFile = await KnownFolders.PicturesLibrary.CreateFileAsync(
PHOTO_FILE_NAME, CreationCollisionOption.GenerateUniqueName);
ImageEncodingProperties imageProperties = ImageEncodingProperties.CreateJpeg();
await mediaCapture.CapturePhotoToStorageFileAsync(imageProperties, photoFile);
takePhoto.IsEnabled = true;
status.Text = photoFile.Path;
IRandomAccessStream photoStream = await photoFile.OpenReadAsync();
BitmapImage bitmap = new BitmapImage();
bitmap.SetSource(photoStream);
captureImage.Source = bitmap;
我使用status.text
中的路径访问文件但是没有文件
提前致谢
您可以尝试通过网络上的 UNC 路径访问本地文件系统。因为它是 Windows OS,所以它具有默认的管理员共享。
例如:\192.168.1.123\C$
这将提示输入设备的管理员用户详细信息。
另请查看此博客 post,了解通过 IoT 仪表板访问它的方法:http://www.purplefrogsystems.com/paul/2016/06/controlling-your-windows-10-iot-core-device/