实例介绍
C#是.net平台上的明星语言,可以很容易做出漂亮的界面。EmguCV是将opencv封装的一个.net库可以被VC++,VC#,VB.net调用。网上对于EmguCV的介绍很少,本人整理了一些资料Emgu和C#相结合的一些例子,对大家的学习一定会有帮助
【实例截图】
【核心代码】
Emgu.CV.Example
└── Emgu.CV.Example
├── Aruco
│ ├── App.config
│ ├── Aruco.csproj
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── CameraCapture
│ ├── CameraCapture.cs
│ ├── CameraCapture.csproj
│ ├── CameraCapture.Designer.cs
│ ├── CameraCapture.resx
│ ├── CameraCapture.v11.suo
│ ├── CommonAssemblyInfo.cs
│ ├── obj
│ │ └── Debug
│ │ ├── CameraCapture.CameraCapture.resources
│ │ ├── CameraCapture.csproj.FileListAbsolute.txt
│ │ ├── CameraCapture.csproj.GenerateResource.Cache
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Example.CameraCapture.exe
│ │ ├── Example.CameraCapture.pdb
│ │ ├── x64
│ │ │ ├── concrt140.dll
│ │ │ ├── cvextern.dll
│ │ │ ├── cvextern.lib
│ │ │ ├── msvcp140.dll
│ │ │ ├── opencv_ffmpeg343_64.dll
│ │ │ └── vcruntime140.dll
│ │ └── x86
│ │ ├── concrt140.dll
│ │ ├── cvextern.dll
│ │ ├── msvcp140.dll
│ │ ├── opencv_ffmpeg343.dll
│ │ └── vcruntime140.dll
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── CPlusPlus
│ ├── app.ico
│ ├── app.rc
│ ├── AssemblyInfo.cpp
│ ├── CPlusPlus2008.vcproj
│ ├── CPlusPlus2010.vcxproj
│ ├── CPlusPlus.cpp
│ ├── ImageProcessor.cpp
│ ├── ImageProcessor.h
│ ├── MainForm.h
│ ├── MainForm.resX
│ ├── ReadMe.txt
│ ├── resource.h
│ ├── stdafx.cpp
│ └── stdafx.h
├── FaceDetection
│ ├── DetectFace.cs
│ ├── FaceDetection.csproj
│ ├── lena.jpg
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── FaceDetectionVB
│ ├── FaceDetectionVB.vbproj
│ ├── lena.jpg
│ ├── Module1.vb
│ └── My Project
│ ├── Application.Designer.vb
│ ├── AssemblyInfo.vb
│ ├── Resources.Designer.vb
│ ├── Resources.resx
│ ├── Settings.Designer.vb
│ └── Settings.settings
├── FacialMouseControl
│ ├── FacialMouseControl.csproj
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── FeatureMatching
│ ├── box_in_scene.png
│ ├── box.png
│ ├── DrawMatches.cs
│ ├── FeatureMatching.cs
│ ├── FeatureMatching.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── FeatureMatching.csproj.FileListAbsolute.txt
│ │ └── FeatureMatching.csprojResolveAssemblyReference.cache
│ └── Properties
│ └── AssemblyInfo.cs
├── HelloWorld
│ ├── HelloWorld.csproj
│ ├── HelloWorld.v11.suo
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Example.HelloWorld.exe
│ │ ├── Example.HelloWorld.pdb
│ │ ├── HelloWorld.csproj.FileListAbsolute.txt
│ │ └── HelloWorld.csprojResolveAssemblyReference.cache
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── ImageDatabase
│ ├── Antlr3.Runtime.dll
│ ├── app.config
│ ├── CommonAssemblyInfo.cs
│ ├── Iesi.Collections.dll
│ ├── ImageDatabase.cs
│ ├── ImageDatabase.csproj
│ ├── ImageDatabase.v11.suo
│ ├── log4net.dll
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── NHibernate.ByteCode.LinFu.dll
│ ├── NHibernate.dll
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Example.ImageDatabase.exe
│ │ ├── Example.ImageDatabase.pdb
│ │ ├── ImageDatabase.csproj.FileListAbsolute.txt
│ │ ├── ImageDatabase.csproj.GenerateResource.Cache
│ │ └── ImageDatabase.MainForm.resources
│ ├── PersistentImage.cs
│ ├── PersistentImage.hbm.xml
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SqliteDB.xml
│ └── System.Data.SQLite.DLL
├── LatentSvmDetector
│ ├── cat.jpg
│ ├── cat.xml
│ ├── LatentSvmDetector.csproj
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── LicensePlateRecognition
│ ├── app.config
│ ├── LicensePlateDetector.cs
│ ├── license-plate.jpg
│ ├── LicensePlateRecognition.csproj
│ ├── LicensePlateRecognitionForm.cs
│ ├── LicensePlateRecognitionForm.Designer.cs
│ ├── LicensePlateRecognitionForm.resx
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── MotionDetection
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── MotionDetection.csproj
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── OCR
│ ├── app.config
│ ├── OCR.csproj
│ ├── OCRForm.cs
│ ├── OCRForm.Designer.cs
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── PedestrianDetection
│ ├── FindPedestrian.cs
│ ├── PedestrianDetection.csproj
│ ├── pedestrian.png
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── PlanarSubdivision
│ ├── DrawSubdivision.cs
│ ├── PlanarSubdivision.csproj
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── RealtimeCamera.UWP
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Assets
│ │ ├── LockScreenLogo.scale-200.png
│ │ ├── SplashScreen.scale-200.png
│ │ ├── Square150x150Logo.scale-200.png
│ │ ├── Square44x44Logo.scale-200.png
│ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ ├── StoreLogo.png
│ │ └── Wide310x150Logo.scale-200.png
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── Default.rd.xml
│ └── RealtimeCamera.csproj
├── ShapeDetection
│ ├── CommonAssemblyInfo.cs
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Example.ShapeDetection.exe
│ │ ├── Example.ShapeDetection.pdb
│ │ ├── ShapeDetection.csproj.FileListAbsolute.txt
│ │ ├── ShapeDetection.csproj.GenerateResource.Cache
│ │ ├── ShapeDetection.csprojResolveAssemblyReference.cache
│ │ └── ShapeDetection.MainForm.resources
│ ├── pic3.png
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ShapeDetection.csproj
│ └── ShapeDetection.v11.suo
├── Simple3DReconstruction
│ ├── imL.png
│ ├── imR.png
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Simple3DReconstruction.csproj
├── Stitching
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── stitch1.jpg
│ ├── stitch2.jpg
│ ├── stitch3.jpg
│ ├── stitch4.jpg
│ ├── Stitching.csproj
│ ├── StitchingMainForm.cs
│ ├── StitchingMainForm.Designer.cs
│ └── StitchingMainForm.resx
├── TrafficSignRecognition
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── StopSignDetector.cs
│ ├── stop-sign.jpg
│ ├── stop-sign-model.png
│ ├── TrafficSignRecognition.csproj
│ ├── TrafficSignRecognitionForm.cs
│ ├── TrafficSignRecognitionForm.Designer.cs
│ └── TrafficSignRecognitionForm.resx
├── VideoSurveilance
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── VideoSurveilance.cs
│ ├── VideoSurveilance.csproj
│ ├── VideoSurveilance.Designer.cs
│ └── VideoSurveilance.resx
├── WebDynamicImage
│ ├── Bin
│ │ ├── x64
│ │ │ ├── concrt140.dll
│ │ │ ├── cvextern.dll
│ │ │ ├── msvcp140.dll
│ │ │ ├── opencv_ffmpeg343_64.dll
│ │ │ └── vcruntime140.dll
│ │ └── x86
│ │ ├── concrt140.dll
│ │ ├── cvextern.dll
│ │ ├── msvcp140.dll
│ │ ├── opencv_ffmpeg343.dll
│ │ └── vcruntime140.dll
│ ├── Default.aspx
│ └── Web.Config
├── Webservice_Client
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Webservice_Client.csproj
├── Webservice_Host
│ ├── IImageService.cs
│ ├── ImageService.cs
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Webservice_Host.csproj
├── WPF
│ ├── app.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Window1.xaml
│ ├── Window1.xaml.cs
│ └── WPF.csproj
└── XamarinForms
├── Core
│ ├── AboutPage.cs
│ ├── App.cs
│ ├── ButtonTextImagePage.xaml
│ ├── ButtonTextImagePage.xaml.cs
│ ├── FaceDetectionPage.cs
│ ├── FeatureMatchingPage.cs
│ ├── HelloWorldPage.cs
│ ├── OcrPage.cs
│ ├── PedestrianDetectionPage.cs
│ ├── PlanarSubdivisionPage.cs
│ └── test_image.png
├── UWP
│ ├── ApplicationInsights.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Assets
│ │ ├── LockScreenLogo.scale-200.png
│ │ ├── SplashScreen.scale-200.png
│ │ ├── Square150x150Logo.scale-200.png
│ │ ├── Square44x44Logo.scale-200.png
│ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ ├── StoreLogo.png
│ │ └── Wide310x150Logo.scale-200.png
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── Default.rd.xml
│ └── UWP.csproj
└── WindowsUniversal81
├── Shared
│ ├── App.xaml
│ └── App.xaml.cs
├── Windows
│ ├── Assets
│ │ ├── Logo.scale-100.png
│ │ ├── SmallLogo.scale-100.png
│ │ ├── SplashScreen.scale-100.png
│ │ └── StoreLogo.scale-100.png
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── questionmark.png
│ └── Store81.csproj
└── WindowsPhone
├── Assets
│ ├── Logo.scale-240.png
│ ├── SmallLogo.scale-240.png
│ ├── SplashScreen.scale-240.png
│ ├── Square71x71Logo.scale-240.png
│ ├── StoreLogo.scale-240.png
│ └── WideLogo.scale-240.png
├── MainPage.xaml
├── MainPage.xaml.cs
├── packages.config
├── Phone81.csproj
├── Properties
│ └── AssemblyInfo.cs
└── questionmark.png
78 directories, 298 files
标签:
相关软件
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)