资源简介

C#调用opencv打开摄像头录像,并抓取图片。 对视频直接调节灰度值,并显示图片。

资源截图

代码片段和文件信息

//----------------------------------------------------------------------------
//  Copyright (C) 2004-2011 by EMGU. All rights reserved.       
//----------------------------------------------------------------------------

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using Emgu.CV;

namespace VideoSurveilance
{
   static class Program
   {
      /// 
      /// The main entry point for the application.
      /// 

      [STAThread]
      static void Main()
      {
         if (!IsPlaformCompatable()) return;
         Application.EnableVisualstyles();
         Application.SetCompatibleTextRenderingDefault(false);
         Application.Run(new VideoSurveilance());
      }

      /// 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         905  2020-12-01 13:03  test2\test2.sln
     文件       18944  2020-12-01 13:03  test2\test2.suo
     文件        1565  2020-12-01 13:03  test2\Test2\Program.cs
     文件        4948  2020-12-01 13:03  test2\Test2\test2.csproj
     文件        4925  2020-12-01 13:03  test2\Test2\VideoSurveilance.cs
     文件       10226  2020-12-01 13:03  test2\Test2\VideoSurveilance.designer.cs
     文件        6012  2020-12-01 13:03  test2\Test2\VideoSurveilance.resx
     文件      279552  2020-12-01 13:03  test2\Test2\bin\Debug\Emgu.CV.dll
     文件      878080  2020-12-01 13:03  test2\Test2\bin\Debug\Emgu.CV.pdb
     文件      113152  2020-12-01 13:03  test2\Test2\bin\Debug\Emgu.CV.UI.dll
     文件      153088  2020-12-01 13:03  test2\Test2\bin\Debug\Emgu.CV.UI.pdb
     文件       35149  2020-12-01 13:03  test2\Test2\bin\Debug\Emgu.CV.UI.xml
     文件     1094587  2020-12-01 13:03  test2\Test2\bin\Debug\Emgu.CV.xml
     文件       23040  2020-12-01 13:03  test2\Test2\bin\Debug\Emgu.Util.dll
     文件       54784  2020-12-01 13:03  test2\Test2\bin\Debug\Emgu.Util.pdb
     文件       21208  2020-12-01 13:03  test2\Test2\bin\Debug\Emgu.Util.xml
     文件       14336  2020-12-01 13:03  test2\Test2\bin\Debug\test2.exe
     文件       24064  2020-12-01 13:03  test2\Test2\bin\Debug\test2.pdb
     文件       14328  2020-12-01 13:03  test2\Test2\bin\Debug\test2.vshost.exe
     文件         490  2020-12-01 13:03  test2\Test2\bin\Debug\test2.vshost.exe.manifest
     文件      307200  2020-12-01 13:03  test2\Test2\bin\Debug\ZedGraph.dll
     文件     1492968  2020-12-01 13:03  test2\Test2\bin\Debug\ZedGraph.xml
     文件       10240  2020-12-01 13:03  test2\Test2\bin\Debug\zh-CN\Emgu.CV.UI.resources.dll
     文件        4096  2020-12-01 13:03  test2\Test2\bin\Debug\zh-CN\ZedGraph.resources.dll
     文件       17888  2020-12-01 13:03  test2\Test2\obj\Debug\ResolveAssemblyReference.cache
     文件        1111  2020-12-01 13:03  test2\Test2\obj\Debug\test2.csproj.FileListAbsolute.txt
     文件         858  2020-12-01 13:03  test2\Test2\obj\Debug\test2.csproj.GenerateResource.Cache
     文件       14336  2020-12-01 13:03  test2\Test2\obj\Debug\test2.exe
     文件       24064  2020-12-01 13:03  test2\Test2\obj\Debug\test2.pdb
     文件         180  2020-12-01 13:03  test2\Test2\obj\Debug\test2.Properties.Resources.resources
     文件         180  2020-12-01 13:03  test2\Test2\obj\Debug\VideoSurveilance.VideoSurveilance.resources
............此处省略7个文件信息

评论

共有 条评论