Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does WPF use AForge to call the camera?

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how to use AForge to call the camera in WPF". Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "how WPF uses AForge to call the camera".

AForge quotes 1. Create a WPF project and install the AForge-related SDK package in NuGet:

two。 Project reference 2.1. Because AForge is used in WPF and needs to be embedded in WPF through WindowsFormsHost, you need to add relevant references to the project:

2.2. Add a namespace to the page

In the .xaml file, add the following namespace:

Xmlns:wfi = "clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration" xmlns:aforge= "clr-namespace:AForge.Controls;assembly=AForge.Controls

3. Create a control

Add a WindowsFormsHost to XAML and embed a VideoSourcePlayer

Initialization

In the background code, add the initialization code, the following code simulates the setting of the first camera, FilterInfoCollection is actually a collection.

FilterInfoCollection videoDevices = new FilterInfoCollection (FilterCategory.VideoInputDevice); if (videoDevices.Count > 0) {var videoDevice = new VideoCaptureDevice (videoDevices [0] .MonikerString); videoDevice.VideoResolution = videoDevice.VideoCapabilities [0]; / / set resolution player.VideoSource = videoDevice; / / set source player.Start (); / / start}

Actual effect (demonstration):

Photo player.GetCurrentVideoFrame (); at this point, I believe you have a better understanding of "how WPF uses AForge to call the camera". You might as well do it in practice! Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report