C# WPF项目实战(经典)


目的:输出两台摄像头图像和两路设备图像,每一路设备截图6张

主要知识:

1. 通过SDK调取摄像头图像,并对图像进行剪裁;

2. WPF中定时器DispatcherTimer用法;

3. WPF中跨线程访问控件方法

  Dispatcher.Invoke((Action)delegate {});

区别于winform中

this.Invoke((Action)delegate {});

4.xml操作:

 XmlDocument xmlDoc = new XmlDocument();xmlDoc.Load(AppDomain.CurrentDomain.BaseDirectory + "\\config.xml");XmlNode settingNode = xmlDoc.DocumentElement;XmlElement e = settingNode.SelectSingleNode("DeviceType") as XmlElement;if (e == null){deviceType = "tps2000";}else{deviceType = e.InnerText;}

5. 带多个参数的委托

            DP1 = new DataProcess(DeviceIP1, LocalPort1,0);DP1.ShowEvent1 = DrawControls1;DP1.Start();//启动线程

6.多线程操作

            Thread t1 = new Thread(new ThreadStart(DataRevThread));                  //开启DataRevThreadt1.Name = "DataRevThread";                                            //线程名字t1.Start();t1.IsBackground = true;                                                  //后台运行

7. UDP接收,解码;

8. emgucv使用;

9. 工厂模式:

ModelFactory MF = new ModelFactory();DM = MF.CreateDataModelFactory_v1(sNeed.ToString());

10.信号量线程间同步

Semaphore TaskSemaphoreData = new Semaphore(0, 2560);           //数据缓存队列缓存区TaskSemaphoreRev.WaitOne();                //等待接收队列

11.Bitmap转换为ImageSource

 [System.Runtime.InteropServices.DllImport("gdi32.dll")]public static extern bool DeleteObject(IntPtr hObject);public static ImageSource ChangeBitmapToImageSource(Bitmap bitmap){IntPtr hBitmap = bitmap.GetHbitmap();ImageSource wpfBitmap = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(hBitmap,IntPtr.Zero,Int32Rect.Empty,BitmapSizeOptions.FromEmptyOptions());if (!DeleteObject(hBitmap)){throw new System.ComponentModel.Win32Exception();}return wpfBitmap;}

12.Queue和list的操作

包括但是不限于以上内容

代码如下:

MainWindow.xaml:

<Fluent:RibbonWindow x:Class="thzSoftware.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:Fluent="urn:fluent-ribbon"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"xmlns:wfi="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"xmlns:local="clr-namespace:thzSoftware"mc:Ignorable="d"Title="MainWindow" Height="600" Width="800" WindowStartupLocation="CenterScreen" WindowState="Maximized" Background="LightBlue" Closing="RibbonWindow_Closing"><Grid ShowGridLines="True" ><Grid.RowDefinitions><RowDefinition Height="*"></RowDefinition><RowDefinition Height="10*"></RowDefinition><RowDefinition Height="*"></RowDefinition><RowDefinition Height="10*"></RowDefinition></Grid.RowDefinitions><Grid.ColumnDefinitions><ColumnDefinition Width="*"/><ColumnDefinition Width="*"/><ColumnDefinition Width="*"/><ColumnDefinition Width="*"/><ColumnDefinition Width="*"/><ColumnDefinition Width="*"/><ColumnDefinition Width="*"/><ColumnDefinition Width="*"/></Grid.ColumnDefinitions><Label Grid.Row="0" Grid.Column="0" Name="labelCamera1Status" Content="摄像头连接状态" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Background="LightCyan"/><wfi:WindowsFormsHost Grid.Row="1" Grid.Column="0" Background="LightGray"><wf:PictureBox x:Name="Cam1" /></wfi:WindowsFormsHost><Label Grid.Row="2" Grid.Column="0" Name="labelCamera2Status"  Content="摄像头连接状态" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Background="LightCyan"/><wfi:WindowsFormsHost Grid.Row="3" Grid.Column="0" Background="LightGray"><wf:PictureBox x:Name="Cam2" /></wfi:WindowsFormsHost><Label Grid.Row="0" Grid.Column="1" Name="labelThz1Status"  Content="太赫兹连接状态" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Background="LightCyan"/><Image Grid.Row="1" Grid.Column="1" Name="Thz1"  /><Label Grid.Row="2" Grid.Column="1" Name="labelThz2Status"  Content="太赫兹连接状态" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Background="LightCyan"/><Image Grid.Row="3" Grid.Column="1" Name="Thz2" /><Image Grid.Row="1" Grid.Column="2" Name="Thz1Image1" /><Image Grid.Row="1" Grid.Column="3" Name="Thz1Image2" /><Image Grid.Row="1" Grid.Column="4" Name="Thz1Image3" /><Image Grid.Row="1" Grid.Column="5" Name="Thz1Image4" /><Image Grid.Row="1" Grid.Column="6" Name="Thz1Image5" /><Image Grid.Row="1" Grid.Column="7" Name="Thz1Image6" /><Image Grid.Row="3" Grid.Column="2" Name="Thz2Image1" /><Image Grid.Row="3" Grid.Column="3" Name="Thz2Image2" /><Image Grid.Row="3" Grid.Column="4" Name="Thz2Image3" /><Image Grid.Row="3" Grid.Column="5" Name="Thz2Image4" /><Image Grid.Row="3" Grid.Column="6" Name="Thz2Image5" /><Image Grid.Row="3" Grid.Column="7" Name="Thz2Image6" /></Grid>
</Fluent:RibbonWindow>

MainWindow.xaml.cs

using System;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Windows.Threading;
using MessageBox = System.Windows.MessageBox;
using thzModel;
using System.Drawing;
using System.Windows;
using System.Windows.Media.Imaging;
using System.Windows.Media;
using System.Xml;
using Emgu.CV;
using Emgu.CV.Structure;
using System.Threading;
using System.Drawing.Imaging;
using System.Collections.Generic;
using System.Windows.Controls;
using Image = System.Windows.Controls.Image;namespace thzSoftware
{/// <summary>/// MainWindow.xaml 的交互逻辑/// </summary>public partial class MainWindow : Fluent.RibbonWindow{DispatcherTimer Cam1ReconnectTimer, Cam2ReconnectTimer;public MainWindow()
{try{InitializeComponent();Environment.CurrentDirectory = AppDomain.CurrentDomain.BaseDirectory;init();}catch (Exception ex){MessageBox.Show(ex.StackTrace + ex.Message);LogWrite.logWrite(ex.Message, ex.StackTrace);}}public IntPtr PictureDev1Cam { get { return Cam1.Handle; } }public IntPtr PictureDev2Cam { get { return Cam2.Handle; } }IntPtr Cam1Handle = IntPtr.Zero;IntPtr Cam2Handle = IntPtr.Zero;Camera Camera1 = new Camera();Camera Camera2 = new Camera();static private string Cam1IP = "192.168.1.64";static private string Cam2IP = "192.168.1.61";DataProcess DP1 = null, DP2 = null;object ThreadLockBitmap = new object();List<ImageSource> thzBitmapList1 = new List<ImageSource>();List<ImageSource> thzBitmapList2 = new List<ImageSource>();int snapFlag1 = 0, snapFlag2 = 0;static public String DeviceType{get{return deviceType;}set{deviceType = value;}}static private string deviceType = "tps2000";void init()
{ReadConfigXML();Cam1Handle = PictureDev1Cam;Cam2Handle = PictureDev2Cam;Cam1.SizeMode = PictureBoxSizeMode.Zoom;Cam2.SizeMode = PictureBoxSizeMode.Zoom;Cam1ReconnectTimer = new DispatcherTimer();Cam1ReconnectTimer.Interval = new TimeSpan(0, 0, 3);//定时间隔3秒Cam1ReconnectTimer.Tick += Cam1ReconnectTimer_Tick;//加载事件,敲tab键事件框架可以自己出来Cam1ReconnectTimer.Start();Cam2ReconnectTimer = new DispatcherTimer();Cam2ReconnectTimer.Interval = new TimeSpan(0, 0, 3);//定时间隔3秒Cam2ReconnectTimer.Tick += Cam2ReconnectTimer_Tick;//加载事件,敲tab键事件框架可以自己出来Cam2ReconnectTimer.Start();thzModel.Command.CommandUp(8);//发送启动指令string DeviceIP1 = "192.168.1.110";int LocalPort1 = 8007;DP1 = new DataProcess(DeviceIP1, LocalPort1,0);DP1.ShowEvent1 = DrawControls1;DP1.Start();//启动线程string DeviceIP2 = "192.168.1.120";int LocalPort2 = 8009;DP2 = new DataProcess(DeviceIP2, LocalPort2, 1);DP2.ShowEvent2 = DrawControls2;DP2.Start();//启动线程}private void DrawControls1(Bitmap image, bool isWarning, bool isBlack)
{Image[] iSource = { Thz1Image1, Thz1Image2, Thz1Image3, Thz1Image4, Thz1Image5, Thz1Image6 };Dispatcher.Invoke((Action)delegate{labelThz1Status.Content = "太赫兹连接成功";Thz1.Source = ChangeBitmapToImageSource(image);snapFlag1++;thzBitmapList1.Add(Thz1.Source);if (thzBitmapList1.Count > 6)thzBitmapList1.RemoveAt(0);if (snapFlag1 > 8){snapFlag1 = 0;for (int i = 0; i < thzBitmapList1.Count; i++){iSource[i].Source = thzBitmapList1[i];}}});}[System.Runtime.InteropServices.DllImport("gdi32.dll")]public static extern bool DeleteObject(IntPtr hObject);public static ImageSource ChangeBitmapToImageSource(Bitmap bitmap)
{IntPtr hBitmap = bitmap.GetHbitmap();ImageSource wpfBitmap = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(hBitmap,IntPtr.Zero,Int32Rect.Empty,BitmapSizeOptions.FromEmptyOptions());if (!DeleteObject(hBitmap)){throw new System.ComponentModel.Win32Exception();}return wpfBitmap;}private void DrawControls2(Bitmap image, bool isWarning, bool isBlack)
{Image[] iSource = { Thz2Image1, Thz2Image2, Thz2Image3, Thz2Image4, Thz2Image5, Thz2Image6 };Dispatcher.Invoke((Action)delegate {labelThz2Status.Content = "太赫兹连接成功"; Thz2.Source = ChangeBitmapToImageSource(image);snapFlag2++;thzBitmapList2.Add(Thz2.Source);if (thzBitmapList2.Count > 6)thzBitmapList2.RemoveAt(0);if (snapFlag2 > 8){snapFlag2 = 0;for (int i = 0; i < thzBitmapList2.Count; i++){iSource[i].Source = thzBitmapList2[i];}}});}private void ReadConfigXML()
{try{XmlDocument xmlDoc = new XmlDocument();xmlDoc.Load(AppDomain.CurrentDomain.BaseDirectory + "\\config.xml");XmlNode settingNode = xmlDoc.DocumentElement;XmlElement e = settingNode.SelectSingleNode("DeviceType") as XmlElement;if (e == null){deviceType = "tps2000";}else{deviceType = e.InnerText;}}catch (Exception ex){LogWrite.logWrite(ex.Message, ex.StackTrace);}}private void ConnectCamera(int whitch)
{try{string userName = "admin";string password = "a123456.";int PortCamera = 8000;if (whitch == 1){labelCamera1Status.Content = "摄像头连接中...";Task.Run(() =>{if (!Camera1.ConnectCamera(Cam1IP, PortCamera, userName, password)){Dispatcher.Invoke((Action)delegate { labelCamera1Status.Content = "摄像头连接失败"; });}else{Dispatcher.Invoke((Action)delegate { labelCamera1Status.Content = "摄像头连接成功"; });Camera1.Preview(Cam1Handle);Camera1.AdjustMirrorPara(1);Cam1ReconnectTimer.Stop();}});}else{labelCamera2Status.Content = "摄像头连接中...";Task.Run(() =>{if (!Camera2.ConnectCamera(Cam2IP, PortCamera, userName, password)){Dispatcher.Invoke((Action)delegate { labelCamera2Status.Content = "摄像头连接失败"; });}else{Dispatcher.Invoke((Action)delegate { labelCamera2Status.Content = "摄像头连接成功"; });Camera2.Preview(Cam2Handle);Camera2.AdjustMirrorPara(1);Cam2ReconnectTimer.Stop();}});}}catch (Exception ex){MessageBox.Show(ex.StackTrace + ex.Message);LogWrite.logWrite(ex.Message, ex.StackTrace);}}private void Cam1ReconnectTimer_Tick(object sender, EventArgs e)
{ConnectCamera(1);}private void RibbonWindow_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{thzModel.Command.CommandUp(0);//发送停止指令//Application.Exit();}private void Cam2ReconnectTimer_Tick(object sender, EventArgs e)
{ConnectCamera(2);}}}

其余部分代码太长,不贴了,需要的话自己下载:百度网盘

链接:https://pan.baidu.com/s/1k2F0C-0gXX-tK_32m_ksOA 

提取码:abs5 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/302842.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

4个终于被破译的世界级密码

全世界有3.14 % 的人已经关注了数据与算法之美很多时候&#xff0c;一个设计精巧的密码就像数学难题一样&#xff0c;许许多多难以破解的密码让人青丝泛白&#xff0c;至今仍未见天日。不过&#xff0c;也有一些密码中的幸运儿&#xff0c;最终仍然迎来了真相大白的那天。秘密组…

NET问答: 如何在 ASP.NET Core 的 .json 文件中读取 AppSettings ?

咨询区 Oluwafemi&#xff1a;在 appsettings.json 中我有如下的 AppSettings 实体数据&#xff0c;如下代码所示&#xff1a;{"AppSettings": {"token": "1234"} }我在网上搜了很久&#xff0c;寻找如何从 .json 文件中获取 AppSettings 实体&a…

java虚拟机工作原理图_Java虚拟机工作原理

首先我想从宏观上介绍一下Java虚拟机的工作原理。从最初的我们编写的Java源文件(.java文件)是如何一步步执行的&#xff0c;如下图所示&#xff0c;首先Java源文件经过前端编译器(javac或ECJ)将.java文件编译为Java字节码文件&#xff0c;然后JRE加载Java字节码文件&#xff0c…

如何快速测试与数据库的连接并得到连接字符串

刚做程序开发的人&#xff0c;常常为如何连接数据库&#xff0c;怎么写连接字符串而困惑。做产品安装的服务人员&#xff0c;也常常为如何快速测试本机与数据库的连接状况而头疼。这里&#xff0c;给出一个简单快速的实现方法&#xff1a;*.udl文件。 第一步&#xff1a;创建“…

奇异值的物理意义是什么?

全世界有3.14 % 的人已经关注了数据与算法之美矩阵奇异值的物理意义是什么&#xff1f;或者说&#xff0c;奇异值形象一点的意义是什么&#xff1f;把m*n矩阵看作从m维空间到n维空间的一个线性映射&#xff0c;是否&#xff1a;各奇异向量就是坐标轴&#xff0c;奇异值就是对应…

WPF使用Animation仿WeChat(微信)播放语音消息

WPF开发者QQ群&#xff1a; 340500857 前言WPF使用Animation仿WeChat&#xff08;微信&#xff09;播放语音消息&#xff1f;效果图&#xff1a;创建MyAnimationForever.cs如下&#xff1a;public class MyAnimationForever : Control{private static Storyboard MyStory;priva…

epublib java_使用Epublib处理epub文件 | 学步园

通过wlw发布在我的博客funba.cn希望csdn能重新支持wlwEpublib是一个用于处理epub文件的java类库&#xff0c;可以对epub文件进行读写处理&#xff1b;而且提供了一个阅读器&#xff0c;可以直接运行(java -jar 方式)&#xff0c;并可以打开epub类型的文件进行阅读。1、这个例子…

php注入详解

本文主要是为小菜们服务的&#xff0c;如果你已经是一只老鸟呢&#xff0c;可能某些东西会感觉比较乏味&#xff0c;但只要你仔细的看&#xff0c;你会发现很多有趣的东西哦。 阅读此文你只要明白下面的这点东西就够了。 1.明白phpmysql环境是如何搭建的&#xff0c;在光盘中…

机器学习的最佳学习路线,就在这里!

AI这个词相信大家都非常熟悉&#xff0c;近几年来人工智能圈子格外热闹&#xff0c;光是AlphoGo就让大家对它刮目相看。今天小天就来跟大家唠一唠如何进军人工智能的第一步——机器学习。在机器学习领域&#xff0c;Python已经成为了主流。一方面因为这门语言简单易上手&#x…

.NET RulesEngine(规则引擎)

一次偶然的机会&#xff0c;让我拿出RulesEngine去完成一个业务&#xff0c;对于业务来说主要是完成一个可伸缩性&#xff08;不确定的类型&#xff0c;以及不确定的条件&#xff0c;条件的变动可能是持续增加修改的&#xff09;的业务判断。比如说完成一个成就系统&#xff0c…

io流图解 java_详细讲解JAVA中的IO流

一、流的概念流(stream)的概念源于UNIX中管道(pipe)的概念。在UNIX中&#xff0c;管道是一条不间断的字节流&#xff0c;用来实现程序或进程间的通信&#xff0c;或读写外围设备、外部文件等。一个流&#xff0c;必有源端和目的端&#xff0c;它们可以是计算机内存的某些区域&a…

分段函数 左右 f'正 不等于f'负 则f'导数不存在。所以不能推出f连续是否

根据单侧极限定理。当求分界处函数时。如果 f正f负 那么 f存在。 如果 f正&#xff01;f负 f不存在。 如果 f正或者f负不存在。 则f不一定不存在。单侧极限是可导的充分非必要条件。转载于:https://www.cnblogs.com/friends-wf/articles/2380690.html

Mongo规范

1.【强制】集合中的 key 禁止使用任何 "_"&#xff08;下划线&#xff09;以外的特殊字符。2.【强制】尽量将同样类型的文档存放在一个集合中&#xff0c;将不同类型的文档分散在不同的集合中&#xff1b;相同类型的文档能够大幅度提高索引利用率&#xff0c;如果文档…

java awt区域_java的awt包中有没有表示区域的类或者方法,可以传递一个Rectangle

展开全部import javax.swing.*;import java.awt.*;import java.awt.event.*;import java.util.*;final class RectPaintDemo extends JFrame {final static private Dimension SIZE new Dimension(800, 600);public String getTitle() {return "RectPaintDemo";}pub…

BPM与Workflow的区别

ItemworkflowBPM流程管理周期设计、执行流程全周期&#xff0c;包括梳理、监控、分析目标用户群体编程人员业务人员、IT技术人员平台化设施流程引擎内核流程、组织、权限、表单、规则、门户、监控、分析等一体化的平台设施应用范围部门级&#xff0c;十余支企业级多级流程层次&…

21个令程序员泪流满面的瞬间【第二弹】

【1】明明我只修改了一行代码... 【2】千万不要随便乱动旧项目【3】提交了错误的分支【4】断点调试BUG【5】当我删除一个无用的代码块【6】糟糕&#xff0c;无法捕获这个BUG【7】当我刚好有一个好点子却被人打断【8】不小心打开了遗留项目【9】费力地捕获一个已知Bug【10】…

大厂出品免费图标资源站

IconPark 字节跳动出品矢量图标样式的开源图标库编程导航开源仓库&#xff1a;https://github.com/liyupi/code-navIconPark 图标库是一个通过技术驱动矢量图标样式的开源图标库&#xff0c;可以实现根据单一 SVG 源文件变换出多种主题&#xff0c; 具备丰富的分类、更轻量的代…

java dos编译命令是什么_在DOS命令行状态下,如果源程序HelloWorld.java在当前目录下,那么编译该程序的命令是()...

【单选题】下列行为中,属于绝对商行为的是【填空题】汽车故障的变化规律可分为3个阶段,早期故障期、 和 。【填空题】无分电器点火线圈与一般点火线圈不同,其 与 没有连接,为互感作用。【简答题】练习函数【单选题】Java编译器的命令是( )【填空题】进气管较长时,压力波传播距离…

Hadoop Streaming 编程

Hadoop Streaming 编程 | 董的博客Hadoop Streaming 编程Category: Hadoop-MapReduceView: 5,678 阅Author: Dong1、概述Hadoop Streaming是Hadoop提供的一个编程工具&#xff0c;它允许用户使用任何可执行文件或者脚本文件作为Mapper和Reducer&#xff0c;例如&#xff1a;采用…

数学不好、英语不好、非本专业,想学python数据分析,能安排吗?

全世界有3.14 % 的人已经关注了数据与算法之美“非本专业想转型做数据分析&#xff0c;有救吗&#xff1f;”“数学不好&#xff0c;英语不好&#xff0c;想学Python数据分析&#xff0c;有救吗&#xff1f;”“不懂Python数据分析到底是什么&#xff0c;有救吗&#xff1f;”我…