WPF 中的 EMGU CV 相机捕获?
我正在尝试在 WPF 中显示相机捕获的帧。我已经可以显示图像了。但想不通事件处理方法?在 WinForm 中它是 Application.Idle 但在 WPF 中我应该使用什么?我已经看到这个线程了..我不能做到了。
All I am trying to display camera captured frames in WPF. I already can display image. But can't figure out the event handling method? In WinForm it is Application.Idle but what should I use in WPF? I have seen this thread already ..I couldn't make it .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不能使用 Timer.Elapsed 事件?
请记住,Elapsed 回调发生在工作线程中,这使得 UI 无法更新。因此,您应该使用 SynchronizationContext 将 UI 更新操作定向到正确的线程。
或者,当所有 UI 任务都通过 Dispatcher 时,您可以对 DispatcherInactive 事件做出反应:
Why can't you use Timer.Elapsed event?
Just remember that Elapsed callback occurs in Worker Thread, that makes impossible update of UI. So you should use SynchronizationContext to direct UI update actions to proper thread.
Alternatively, as all UI tasks go through Dispatcher, you could react on DispatcherInactive event: