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/機器視覺)

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

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 1月 20 週六 201809:07
  • Chain Of Responsibility – Design Pattern (Using C#)

image
Create a logger Pass a message with level = debug and log it Pass a message with level = info and log it Pass a message with level = error and log it Here debug < info < error … level wis
(繼續閱讀...)
文章標籤

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

  • 個人分類:Design Pattern & Implementation by Using C#
▲top
  • 1月 19 週五 201814:48
  • Command Pattern &ndash; Design Pattern (Using C#) &ndash; Part II

image
  Today I am going to show you another way to implement the example demonstrated in the last episode about command pattern. Here is the UML diagram for command pattern and it will be implemented as usual in C#. This time Command block is about to become an abstract class, and LightOnCommand is one of its concrete commands.
(繼續閱讀...)
文章標籤

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

  • 個人分類:Design Pattern & Implementation by Using C#
▲top
  • 1月 10 週三 201816:13
  • Barcode segmentation and decoding

image
http://felix.abecassis.me/category/opencv/ References: 1. Barcode Reading with Open CV
(繼續閱讀...)
文章標籤

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

  • 個人分類:OpenCV
▲top
  • 1月 09 週二 201819:58
  • Image Blending and Management of Regions of Interest (ROI)

image
The following is an example[1] of image blending, which seamlessly combines two different images by using the mask of itself. About half a year ago, I studied something about how to mange multiple ROIs(region of interest) as shown below. Today I am planing to combine both of them in order to meet my new requirements.
(繼續閱讀...)
文章標籤

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

  • 個人分類:Emgu CV
▲top
  • 1月 06 週六 201809:01
  • Null Object Pattern &ndash; Design Pattern (Using C#)

image
 1: interface IWeapon
 2: {
 3: void Use();
 4: }
(繼續閱讀...)
文章標籤

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

  • 個人分類:Design Pattern & Implementation by Using C#
▲top
  • 1月 04 週四 201819:31
  • State Machine &ndash; Design Pattern (Using C#)

image
  GateState interface:
(繼續閱讀...)
文章標籤

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

  • 個人分類:Design Pattern & Implementation by Using C#
▲top
  • 1月 04 週四 201815:28
  • Iterator Pattern &ndash; Design Pattern (Using C#)

image
A. Iterator:
 1: interface Iterator
 2: {
 3: object First();
 4: object Next();
 5: bool IsDone();
 6: object CurrentItem();
 7: }
(繼續閱讀...)
文章標籤

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

  • 個人分類:Design Pattern & Implementation by Using C#
▲top
  • 1月 04 週四 201810:13
  • Composite Pattern &ndash; Design Pattern (Using C#)

image
This tutorial is about composite pattern, which is my thoghts after watching the tutorial created by Christopher Okhravi.    
(繼續閱讀...)
文章標籤

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

  • 個人分類:Design Pattern & Implementation by Using C#
▲top
  • 1月 03 週三 201809:54
  • Template Method Pattern &ndash; Design Pattern (Using C#)

image
ImageProcessor portion:
 1: namespace TemplateMethodConsole
 2: {
 3: abstract class ImageProcessor
 4: {
 5: public void ProcRoutine()
 6: {
 7: Input();
 8: ImageProc();
 9: Output();
 10: }
 11: public virtual void Input()
 12: {
 13: Console.Write("Load file: ");
 14: }
 15: public virtual void ImageProc()
 16: {
 17: Console.Write("Image processing: ");
 18: }
 19: public virtual void Output()
 20: {
 21: Console.Write("Output file: ");
 22: }
 23: }
 24: }
(繼續閱讀...)
文章標籤

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

  • 個人分類:Design Pattern & Implementation by Using C#
▲top
  • 1月 02 週二 201822:33
  • Bridge Pattern &ndash; Design Pattern (Using C#)

image
LongFormArtistResource: (A, 1) LongFormBookResource: (A, 2) ShortFormArtistResource: (B, 1)
(繼續閱讀...)
文章標籤

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

  • 個人分類:Design Pattern & Implementation by Using C#
▲top
«1...30313289»

個人資訊

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

熱門文章

  • (8,482)分水嶺影像分割Marker-based Image Segmentation Algorithm Using OpenCV2.4.7 with Visual Studio 2010
  • (4,000)Pylon Live View C# Sample Code Review
  • (14,172)網路上提供測試 RTSP 的伺服器
  • (23,895)Adding Something to DataGridView
  • (2,908)C# 在憑證存放區中找不到資訊清單簽署憑證
  • (4,399)安裝PLC學習軟體 FX-TRN-BEG-T
  • (7,367)建立和使用 C# 的 DLL
  • (3,660)安裝Open eVision 1.2.5.8549
  • (12,907)EmguCV : 圈選感興趣區域
  • (25,025)C# 如何創建, 暫停, 繼續, 終止一個執行緒(Thread)

文章分類

  • 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)

最新文章

  • git開分支測試完成後整併回原本的分支
  • Gemini API Key 低成本 Nano Banana Pro作圖
  • DMK 37AUX226
  • wafer基礎術語
  • 將資料夾中多個mp4影片合併成一個mp4檔案
  • 如何用沙子制造芯片:从冶炼硅锭到晶圆打磨|芯片工艺合集
  • yolov9安裝
  • ActionEngine, ActionTask and ActionWorker
  • @dataclass裝飾子
  • IO控制卡安裝驅動器後無法在此裝置載入驅動程式

動態訂閱

文章精選

文章搜尋

誰來我家

參觀人氣

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