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月 24 週三 202410:05
  • Docker 10分鐘快速入門

透過Docker快速建立你所需要的測試環境
基本概念
1. 鏡像(image)
2. 容器(container)
(繼續閱讀...)
文章標籤

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

  • 個人分類:Git & Github
▲top
  • 1月 24 週三 202409:12
  • CICD到底是什麼呢?

最簡單方式說明什麼是CICD

其他應用: 修課學生上傳作業 自動判定作業有無問題以及自動評分
(繼續閱讀...)
文章標籤

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

  • 個人分類:Git & Github
▲top
  • 12月 22 週五 202310:15
  • 好用的物件分割工具

 Image Segmentation Tool

 
 
(繼續閱讀...)
文章標籤

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

  • 個人分類:Deep Leraning
▲top
  • 11月 28 週二 202309:46
  • 同步播放兩支影片

今天測試同步播放兩支影片






 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89



using System;
using System.Threading;
using Emgu.CV;
using Emgu.CV.CvEnum;
using Emgu.CV.Structure;
using System.Windows.Forms;

namespace WaferPositioning
{
// 同時播放兩支影片
public class DualVideoPlayer
{
private VideoCapture capture1;
private VideoCapture capture2;
private ManualResetEvent pauseEvent = new ManualResetEvent(true);
private bool stopThreads = false;

public event EventHandler<FrameReadyEventArgs> FrameReady;

public DualVideoPlayer(string videoFile1, string videoFile2)
{
capture1 = new VideoCapture(videoFile1);
capture2 = new VideoCapture(videoFile2);
}

public void Start()
{
stopThreads = false;
pauseEvent.Set(); // Resume if paused
ThreadPool.QueueUserWorkItem(o => StartVideoPlayback());
}

public void Pause()
{
pauseEvent.Reset(); // Pause playback
}

public void Resume()
{
pauseEvent.Set(); // Resume playback
}

public void Stop()
{
stopThreads = true;
pauseEvent.Set(); // Resume if paused
}

private void StartVideoPlayback()
{
while (!stopThreads)
{
pauseEvent.WaitOne(); // Pause if signaled

Mat frame1 = new Mat();
Mat frame2 = new Mat();

// Read frames from the video captures
capture1.Read(frame1);
capture2.Read(frame2);

if (!frame1.IsEmpty && !frame2.IsEmpty)
{
FrameReady?.Invoke(this, new FrameReadyEventArgs(frame1, frame2));
}
else
{
// End of video, you may want to stop or loop the playback
capture1.Set(CapProp.PosFrames, 0);
capture2.Set(CapProp.PosFrames, 0);
}
Thread.Sleep(33);
Application.DoEvents(); // Allow UI events to be processed
}
}
}

public class FrameReadyEventArgs : EventArgs
{
public Mat Frame1 { get; }
public Mat Frame2 { get; }

public FrameReadyEventArgs(Mat frame1, Mat frame2)
{
Frame1 = frame1;
Frame2 = frame2;
}
}
}





(繼續閱讀...)
文章標籤

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

  • 個人分類:C#
▲top
  • 11月 27 週一 202311:10
  • Open Source Motion Capture for Autonomous Drones

室內無人機結合3D空間定位及追蹤
(繼續閱讀...)
文章標籤

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

  • 個人分類:OpenCV
▲top
  • 11月 21 週二 202315:36
  • Detectron2 Study

Object Detection and Background removal with Detectron2
detectron2
 
(繼續閱讀...)
文章標籤

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

  • 個人分類:Python
▲top
  • 11月 18 週六 202309:06
  • ffmpeg轉檔

查詢影片FPS(frames per second)
(base) C:\ffmpeg>ffmpeg -i cam1.avi 2>&1 | findstr "fps"
 
調整影片FPS = 5.99
(繼續閱讀...)
文章標籤

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

  • 個人分類:OpenCV
▲top
  • 11月 10 週五 202309:54
  • 如何隨機切割物件?

enter image description here
今天有一項任務,要模擬隨機切割一個物體,
簡單的說,要任意切割物體並且 需要將碎片融合至一張背景圖片上,
(繼續閱讀...)
文章標籤

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

  • 個人分類:OpenCV
▲top
  • 10月 14 週六 202309:03
  • RANSAC linear regression vs linear regression model


產生10筆資料2維資料(xp, yp),前面8筆inliers和最後兩筆outliers
yp_lr: linear regression預測值
(繼續閱讀...)
文章標籤

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

  • 個人分類:Python
▲top
  • 10月 13 週五 202308:19
  • Python zip 和 list 的簡單應用

zip 是Python的一個內置函數,用於將兩個或多個可迭代對象(如列表(list)、元組(tuple)或數組(array))
逐元素地合併成單個可迭代對象。
它將來自每個輸入可迭代對象的相應元素配對在一起。
zip(X, y) 將兩個數組 X 和 y 逐元素合併在一起。
(繼續閱讀...)
文章標籤

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

  • 個人分類:Python
▲top
«1...9101189»

個人資訊

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

動態訂閱

文章精選

文章搜尋

誰來我家

參觀人氣

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