最近在撰寫IP Camera程式讀取時,
目前分類:Emgu CV (42)
- Nov 21 Mon 2022 08:09
IPCAMERA處理一些處理注意事項
- Oct 08 Sat 2022 09:15
計算旋轉角度水平垂直偏移
- Sep 29 Thu 2022 16:55
創建.Net6類別庫for EmguCV
- Sep 29 Thu 2022 15:27
Create EmguCV Applications on .Net 6
開啟新的空白方案,輸入關鍵字: 空白
- Aug 14 Sun 2022 10:14
安裝EmguCV4.5.5
- Jul 17 Tue 2018 10:52
在Azure上通过asp.net使用EmguCV
- Jan 09 Tue 2018 19:58
Image Blending and Management of Regions of Interest (ROI)
The following is an example[1] of image blending, which seamlessly combines two different images by using the mask of itself.
- Nov 28 Tue 2017 13:05
Face Swap Using Emgu CV
Source Image: img1
- Sep 01 Fri 2017 10:08
安裝Emgu TF 1.3.0 行人偵測測試
- May 27 Sat 2017 22:00
C# Multiple Regions of interest Editor
目前功能
- May 17 Wed 2017 11:28
EmguCV - C# / Convert Bitmap to Mat
1: public Mat ConvertBitmapToMat(Bitmap bmp)
2: {
3: // Lock the bitmap's bits.
4: Rectangle rect = new Rectangle(0, 0, bmp.Width, bmp.Height);
5:
6: System.Drawing.Imaging.BitmapData bmpData =
7: bmp.LockBits(rect, System.Drawing.Imaging.ImageLockMode.ReadWrite,
8: bmp.PixelFormat);
9:
10: // data = scan0 is a pointer to our memory block.
11: IntPtr data = bmpData.Scan0;
12:
13: // step = stride = amount of bytes for a single line of the image
14: int step = bmpData.Stride;
15:
16: // So you can try to get you Mat instance like this:
17: Mat mat = new Mat(bmp.Height, bmp.Width, Emgu.CV.CvEnum.DepthType.Cv32F, 4, data, step);
18:
19: // Unlock the bits.
20: bmp.UnlockBits(bmpData);
21:
22: return mat;
23: }
- Jan 30 Mon 2017 16:57
安裝EmguCV 3.1.0.2504
安裝3.1.0.2504版本
- Oct 03 Mon 2016 11:27
Santech Camera Callback範例程式加入EmguCV像素控制
新專案名稱: SantechCallback
- Aug 11 Thu 2016 13:35
計算Object旋轉角度
1. 利用InRange保留感興趣的顏色區間
- Feb 21 Sun 2016 10:05
來源影像和目的影像共用一份可能的錯誤
昨天在測試Basler雙影像Live時, 發現一個有趣現象,
- Feb 16 Tue 2016 15:32
如何接收Basler相機的影像資料?
在Basler C# sample code的範例中,
- Feb 14 Sun 2016 21:13
基本影像資料型態和格式轉換
(一) Bitmap
- Nov 01 Sun 2015 03:34
Emgu CV圖解Clone, Copy 兩者差異
- Oct 14 Wed 2015 08:25
Affine Transformations
最近在處理Line-scan CCD取像, 想不到拼完圖後影像扭曲如此嚴重,