資源簡介
用c#和emgucv實現了1.顯示圖像的直方圖,2.直方圖均衡化,3.中值濾波,4.sobel算子,roberts算子和Prewitt算子的邊緣提取。各算法均自己實現不是調用函數。但是讀圖片的信息是用的emgucv。希望和同樣剛接觸emgucv的同學共同
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Threading.Tasks;
using?System.Windows.Forms;
using?Emgu.CV;//PS:調用的Emgu?dll
using?Emgu.CV.Structure;
using?Emgu.Util;
using?Emgu.CV.CvEnum;
using?System.Threading;
using?System.Runtime.InteropServices;
namespace?emgucvTest
{
????public?partial?class?Form1?:?Form
????{
????????Image?img;
????????Image?Reimg;
????????Boolean?firstClick?=?true;
????????public?Form1()
????????{
????????????InitializeComponent();
????????}
????????private?Image?CreateHis(Image?src)
????????{
????????????int?width?=?src.MIplImage.width;
????????????int?height?=?src.M
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????187??2013-11-22?13:44??第一次圖像處理作業\emgucvTest\App.config
?????文件?????249120??2013-09-22?21:40??第一次圖像處理作業\emgucvTest\bin\Debug\cudart32_55.dll
?????文件????2727424??2013-09-22?21:40??第一次圖像處理作業\emgucvTest\bin\Debug\cvextern.dll
?????文件?????307200??2013-09-23?20:41??第一次圖像處理作業\emgucvTest\bin\Debug\Emgu.CV.dll
?????文件??????36864??2013-09-23?20:41??第一次圖像處理作業\emgucvTest\bin\Debug\Emgu.CV.ML.dll
?????文件?????146004??2013-09-23?20:41??第一次圖像處理作業\emgucvTest\bin\Debug\Emgu.CV.ML.xm
?????文件?????126976??2013-09-23?20:41??第一次圖像處理作業\emgucvTest\bin\Debug\Emgu.CV.UI.dll
?????文件??????35149??2013-09-23?20:41??第一次圖像處理作業\emgucvTest\bin\Debug\Emgu.CV.UI.xm
?????文件????1227435??2013-09-23?20:41??第一次圖像處理作業\emgucvTest\bin\Debug\Emgu.CV.xm
?????文件??????32768??2013-09-23?20:41??第一次圖像處理作業\emgucvTest\bin\Debug\Emgu.Util.dll
?????文件??????22455??2013-09-23?20:41??第一次圖像處理作業\emgucvTest\bin\Debug\Emgu.Util.xm
?????文件??????18432??2013-11-25?17:06??第一次圖像處理作業\emgucvTest\bin\Debug\emgucvTest.exe
?????文件????????187??2013-11-22?13:44??第一次圖像處理作業\emgucvTest\bin\Debug\emgucvTest.exe.config
?????文件??????38400??2013-11-25?17:06??第一次圖像處理作業\emgucvTest\bin\Debug\emgucvTest.pdb
?????文件??????22984??2013-11-26?09:01??第一次圖像處理作業\emgucvTest\bin\Debug\emgucvTest.vshost.exe
?????文件????????187??2013-11-22?13:44??第一次圖像處理作業\emgucvTest\bin\Debug\emgucvTest.vshost.exe.config
?????文件????????490??2012-06-02?22:34??第一次圖像處理作業\emgucvTest\bin\Debug\emgucvTest.vshost.exe.manifest
?????文件?????156960??2013-09-22?21:40??第一次圖像處理作業\emgucvTest\bin\Debug\nppc32_55.dll
?????文件??121352480??2013-09-22?21:40??第一次圖像處理作業\emgucvTest\bin\Debug\nppi32_55.dll
?????文件???15456544??2013-09-22?21:40??第一次圖像處理作業\emgucvTest\bin\Debug\npps32_55.dll
?????文件????1018368??2013-09-22?09:25??第一次圖像處理作業\emgucvTest\bin\Debug\opencv_calib3d290.dll
?????文件????1041920??2013-09-22?09:54??第一次圖像處理作業\emgucvTest\bin\Debug\opencv_contrib290.dll
?????文件????5073920??2013-09-22?09:18??第一次圖像處理作業\emgucvTest\bin\Debug\opencv_core290.dll
?????文件?????674304??2013-09-22?09:23??第一次圖像處理作業\emgucvTest\bin\Debug\opencv_features2d290.dll
?????文件?????475136??2013-09-22?09:18??第一次圖像處理作業\emgucvTest\bin\Debug\opencv_flann290.dll
?????文件????2437632??2013-09-22?09:22??第一次圖像處理作業\emgucvTest\bin\Debug\opencv_highgui290.dll
?????文件????1760768??2013-09-22?09:18??第一次圖像處理作業\emgucvTest\bin\Debug\opencv_imgproc290.dll
?????文件????1176576??2013-09-22?10:11??第一次圖像處理作業\emgucvTest\bin\Debug\opencv_legacy290.dll
?????文件?????482816??2013-09-22?09:18??第一次圖像處理作業\emgucvTest\bin\Debug\opencv_ml290.dll
?????文件?????871936??2013-09-22?11:02??第一次圖像處理作業\emgucvTest\bin\Debug\opencv_nonfree290.dll
............此處省略39個文件信息
評論
共有 條評論