目前分類:Emgu CV (42)

瀏覽方式: 標題列表 簡短摘要

最近在撰寫IP Camera程式讀取時,

me1237guy 發表在 痞客邦 留言(0) 人氣()

 

me1237guy 發表在 痞客邦 留言(0) 人氣()

me1237guy 發表在 痞客邦 留言(0) 人氣()

開啟新的空白方案,輸入關鍵字: 空白

me1237guy 發表在 痞客邦 留言(0) 人氣()

官方Github下載

me1237guy 發表在 痞客邦 留言(0) 人氣()

 

在Azure上通过asp.net使用EmguCV

Tutorial how to use EmguCV in Asp.Net MVC application

Turn your OpenCV Code into a Web API in under 10 minutes — Part 1

Turn your OpenCV code into a Web API in less than 10 minutes : Part 1

 

me1237guy 發表在 痞客邦 留言(1) 人氣()

The following is an example[1] of image blending, which seamlessly combines two different images by using the mask of itself.

me1237guy 發表在 痞客邦 留言(0) 人氣()

Source Image: img1

me1237guy 發表在 痞客邦 留言(0) 人氣()

image

me1237guy 發表在 痞客邦 留言(1) 人氣()

目前功能

me1237guy 發表在 痞客邦 留言(1) 人氣()

   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: }

me1237guy 發表在 痞客邦 留言(3) 人氣()

安裝3.1.0.2504版本

me1237guy 發表在 痞客邦 留言(1) 人氣()

新專案名稱: SantechCallback

me1237guy 發表在 痞客邦 留言(0) 人氣()

1. 利用InRange保留感興趣的顏色區間

me1237guy 發表在 痞客邦 留言(0) 人氣()

原本只想寫一個重疊影像,

me1237guy 發表在 痞客邦 留言(0) 人氣()

昨天在測試Basler雙影像Live時, 發現一個有趣現象,

me1237guy 發表在 痞客邦 留言(0) 人氣()

在Basler C# sample code的範例中,

me1237guy 發表在 痞客邦 留言(1) 人氣()

(一) Bitmap

me1237guy 發表在 痞客邦 留言(0) 人氣()

image

me1237guy 發表在 痞客邦 留言(0) 人氣()

最近在處理Line-scan CCD取像, 想不到拼完圖後影像扭曲如此嚴重,

me1237guy 發表在 痞客邦 留言(0) 人氣()

1 23
Close

您尚未登入,將以訪客身份留言。亦可以上方服務帳號登入留言

請輸入暱稱 ( 最多顯示 6 個中文字元 )

請輸入標題 ( 最多顯示 9 個中文字元 )

請輸入內容 ( 最多 140 個中文字元 )

reload

請輸入左方認證碼:

看不懂,換張圖

請輸入驗證碼