如何访问覆盆子pi windows 10上的网络摄像头捕获的图像

时间:2016-06-28 17:46:10

标签: file webcam raspberry-pi2 windows-10-iot-core

我想访问带有Windows 10 pi2核心的覆盆子iot上的一些文件。 我想知道如何使用地址吗? 在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中的路径来访问文件,但没有文件

提前致谢

1 个答案:

答案 0 :(得分:3)

您可以尝试通过网络上的UNC路径访问本地文件系统。由于它是Windows操作系统,因此它具有默认的管理员共享。

例如:\\192.168.1.123\C$

然后将提示管理员用户设备详细信息。

另请查看此博客文章,了解如何通过物联网信息中心访问它:http://www.purplefrogsystems.com/paul/2016/06/controlling-your-windows-10-iot-core-device/