PIXNET Logo登入

天天向上

跳到主文

程式外包服務  E-mail: me1237guy@yahoo.com.tw 歡迎來信洽談, 請附上相關文件或問題說明, 謝謝

專長:  ※自動光學檢測 ※人臉辨識 ※車牌辨識 ※錄影監控系統 ※自動控制I/O相關 
      ※演算法開發 ※基因演算法 ※類神經網路 
      ※MATLAB  ※VISUAL C++/C# ※Xamarin ※OpenCV ※Emgu ※Unity ※QT4/5
-----------------------------------------------------------------------------------------------
   SA (模擬退火法)     GA (基因演算法)    ACO (蟻群演算法)    PSO (粒子最佳化演算法)   
   排列組合問題最佳化   TSP  Scheduling  K-means, Fuzzy C-means, KNN, DBSCAN分群  
   Fuzzy Control (模糊控制)  Neural Networks (類神經網路) Object Tracking (Kalman Filter, Optical Flow)  
   Object Recognition (Pattern Match, Haar-Like Features, EigenFace)  Human Pose Recognition
   人臉偵測     移動物偵測   車牌辨識    智慧型監控攝影  XBOX Kinect影像處理及應用 體感互動應用  
   自動光學檢測(AOI) 玻璃檢測  NVIDIA CUDA平行運算處理
   TI-DSP 6xxx系列 雙影像輸入   / Raspberry PI 樹莓派 / Arduino控制  自走車避障礙物(GPS/機器視覺)

部落格全站分類:數位生活

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 8月 16 週五 201319:04
  • Server & Client

using namespace System::Net;
using namespace System::Net::Sockets;
using namespace System::Threading;
public ref class ServerSocket
(繼續閱讀...)
文章標籤

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

  • 個人分類:C#
▲top
  • 8月 15 週四 201318:02
  • IP與DNS

Compare two IP addresses:
using namespace System::Net;
 
(繼續閱讀...)
文章標籤

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

  • 個人分類:C#
▲top
  • 7月 29 週一 201322:40
  • Color-based Image Segmentation


To include the following directories:
C:\OpenCV-2.4.5\opencv\build\include
C:\OpenCV-2.4.5\opencv\build\include\opencv
(繼續閱讀...)
文章標籤

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

  • 個人分類:OpenCV
▲top
  • 7月 27 週六 201309:38
  • Extracting the position of game board & recognition of game board pieces

Extracting the position of game board & recognition of game board pieces
(繼續閱讀...)
文章標籤

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

  • 個人分類:OpenCV
▲top
  • 7月 27 週六 201304:54
  • NVIDIA GTX 650安裝

setup version: 320.49-desktop-win8-win7-winvista-64bit-international-whql.exe
(繼續閱讀...)
文章標籤

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

  • 個人分類:OpenCV
▲top
  • 7月 27 週六 201304:54
  • NVIDIA Performance Primitives (NPP) library

1. NVIDIA Performance Primitives (NPP) library
(繼續閱讀...)
文章標籤

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

  • 個人分類:OpenCV
▲top
  • 7月 27 週六 201301:59
  • Tab Control and MenuStrip Visual Studio 2010


    private: System::Void 開啟ToolStripMenuItem_Click(System::Object^  sender, System::EventArgs^  e) {
                 tabControl1->SelectedIndex = 0;
             }
private: System::Void 開啟ToolStripMenuItem1_Click(System::Object^  sender, System::EventArgs^  e) {
             tabControl1->SelectedIndex = 1;
         }
(繼續閱讀...)
文章標籤

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

  • 個人分類:Visual Studio
▲top
  • 7月 27 週六 201300:49
  • 開啟攝影機

OpenCV: version 2.4.5
Visual Studio: version 2010
                 IsStop = false;
                 using namespace cv;
                 VideoCapture capture(0);
                 if (!capture.isOpened())  // check if we succeeded
                     return;
                 Mat src, src_gray, src_edge;
                 CvRect Rect;
                 long cnt = 0;
                 for (;;)
                 {
                     capture >> src;
                     System::Drawing::Graphics^ graphics = pictureBox1->CreateGraphics();
                     System::IntPtr ptr(src.ptr());   
                     System::Drawing::Bitmap^ b  = gcnew System::Drawing::Bitmap(src.cols,src.rows,src.step,System::Drawing::Imaging::PixelFormat::Format24bppRgb,ptr);
                     System::Drawing::RectangleF rect(0,0,pictureBox1->Width,pictureBox1->Height);
                     graphics->DrawImage(b,rect);
                     //----------------------------------------------------------------------------------------------------------------------
                     cvtColor( src, src_gray, CV_BGR2GRAY );
                     System::Drawing::Graphics^ graphics2 = pictureBox2->CreateGraphics();
                     System::IntPtr ptr2(src_gray.ptr());  
                     System::Drawing::Bitmap^ b2  = gcnew System::Drawing::Bitmap(src_gray.cols/3,src_gray.rows,src_gray.step,System::Drawing::Imaging::PixelFormat::Format24bppRgb ,ptr2);
                     System::Drawing::RectangleF rect2(0,0,pictureBox2->Width,pictureBox2->Height);
                     graphics2->DrawImage(b2,rect2);
                     //----------------------------------------------------------------------------------------------------------------------
                     Canny( src_gray, src_edge, 50, 25, 3);
                     System::Drawing::Graphics^ graphics3 = pictureBox3->CreateGraphics();
                     System::IntPtr ptr3(src_edge.ptr());   
                     System::Drawing::Bitmap^ b3  = gcnew System::Drawing::Bitmap(src_edge.cols,src_edge.rows,src_edge.step,System::Drawing::Imaging::PixelFormat::Format8bppIndexed ,ptr3);
                     System::Drawing::RectangleF rect3(0,0,pictureBox3->Width,pictureBox3->Height);
                     graphics3->DrawImage(b3,rect3);
                     cnt++;
                     label1->Text = Convert::ToString(cnt);
                     Application::DoEvents();
                     if(IsStop) break;
                 }  
(繼續閱讀...)
文章標籤

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

  • 個人分類:OpenCV
▲top
  • 7月 26 週五 201322:27
  • Show OpenCV Image on a Visual Studio Picture Box

using namespace cv;
Mat src, src_gray;
CvRect Rect;
// 開啟檔案對話框                
(繼續閱讀...)
文章標籤

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

  • 個人分類:OpenCV
▲top
  • 7月 17 週三 201319:57
  • Mean Shift Segmentation

Mean Shift Clustering/ Segmentation in Matlab
(繼續閱讀...)
文章標籤

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

  • 個人分類:其他語言
▲top
«1...81828389»

個人資訊

me1237guy
暱稱:
me1237guy
分類:
數位生活
好友:
累積中
地區:

熱門文章

  • (744)MFC & OpenCV 利用CvvImage(CImage)元件載入一張圖片並顯示在對話框上
  • (1,143)MFC程式架構
  • (8,478)分水嶺影像分割Marker-based Image Segmentation Algorithm Using OpenCV2.4.7 with Visual Studio 2010
  • (441)Install e2v Line Scan CCD with Camera Link
  • (3,999)Pylon Live View C# Sample Code Review
  • (14,163)網路上提供測試 RTSP 的伺服器
  • (23,895)Adding Something to DataGridView
  • (4,360)安裝PLC學習軟體 FX-TRN-BEG-T
  • (3,658)安裝Open eVision 1.2.5.8549
  • (12,905)EmguCV : 圈選感興趣區域

文章分類

  • wordpress (2)
  • 雲端計算 (1)
  • 邊緣運算 (5)
  • MPI (2)
  • Git & Github (6)
  • Unity (2)
  • Android Studio (10)
  • Deep Leraning (35)
  • LaTex (2)
  • Linux (6)
  • jetson nano (3)
  • Qt (20)
  • Docker (4)
  • Office (1)
  • OpenTK (1)
  • WPF (8)
  • SQL (4)
  • Revit (6)
  • MATLAB (13)
  • R Language (8)
  • Design Pattern & Implementation by Using C# (48)
  • RaspberryPI (5)
  • Python (77)
  • 其他語言 (40)
  • 攝影機 (45)
  • 工業應用 (50)
  • 家庭 (12)
  • Mobile (31)
  • 工作日誌 (2)
  • Linux (5)
  • C/C++ (15)
  • AOI (41)
  • Emgu CV (42)
  • C# (147)
  • Visual Studio (48)
  • OpenCV (118)
  • 未分類文章 (1)

最新文章

  • Gemini API Key 低成本 Nano Banana Pro作圖
  • DMK 37AUX226
  • wafer基礎術語
  • 將資料夾中多個mp4影片合併成一個mp4檔案
  • 如何用沙子制造芯片:从冶炼硅锭到晶圆打磨|芯片工艺合集
  • yolov9安裝
  • ActionEngine, ActionTask and ActionWorker
  • @dataclass裝飾子
  • IO控制卡安裝驅動器後無法在此裝置載入驅動程式
  • How you put and then get items from a queue.Queue

動態訂閱

文章精選

文章搜尋

誰來我家

參觀人氣

  • 本日人氣:
  • 累積人氣: