gpt4 book ai didi

windows-8 - Windows 8 Store MonoGame - 如何从相机中提取位图

转载 作者:行者123 更新时间:2023-12-02 03:42:37 26 4
gpt4 key购买 nike

我正在使用 MonoGame 框架创建 Windows 8 商店应用程序。我想从相机获取每个位图,以便在该位图上处理一些图像识别。问题是我只从相机 (randomAccessStream) 获取整个视频流,但不是视频中的每一帧。

 async private void Start_Click(object sender, RoutedEventArgs e)
{
//1. Initialize:
mediaCaptureMgr = new MediaCapture();
randomAccessStream = new InMemoryRandomAccessStream();

await mediaCaptureMgr.InitializeAsync();

//2. create profile
MediaEncodingProfile encordingProfile = MediaEncodingProfile.CreateWmv(VideoEncodingQuality.Auto);

//3. start recording
await mediaCaptureMgr.StartRecordToStreamAsync(encordingProfile, randomAccessStream);
}

我如何从相机接收新的即将到来的帧/位图?

最佳答案

看看here

这是 Microsoft 的示例应用程序。除其他外,它显示:

  • 如何使用新的 LowLagPhotoCapture 和 LowLagPhotoControl 类捕获图像
  • 如何使用新的 LowLagPhotoSequenceCapture 和 LowLagPhotoSequenceControl 类捕获一系列照片
  • ...

如果你要处理图像,你可以间隔拍摄照片。我认为您不需要处理视频流的每一帧..

关于windows-8 - Windows 8 Store MonoGame - 如何从相机中提取位图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19164571/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com