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

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

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 3月 20 週四 202510:53
  • Qt Designer設計好的UI如何整合或呼叫?


下面為一個簡單UI設計
1. 利用Claude,透過它快速得到一個漂亮的範例(python程式碼)
2. 利用Claude,抽取python程式碼中GUI相關程式碼並輸出成Qt Designer可以編輯ui格式
(繼續閱讀...)
文章標籤

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

  • 個人分類:Qt
▲top
  • 11月 05 週二 202409:16
  • 使用designer設計python人機介面


1. 利用Designer設計一個人機介面,存成檔案 yolo_setting.ui
(繼續閱讀...)
文章標籤

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

  • 個人分類:Qt
▲top
  • 4月 04 週二 202310:12
  • Qt6 Meta Object Compiler(MOC)與Signal Slot關係


加入一個繼承Object的新類別Test,
#ifndef
TEST_H
(繼續閱讀...)
文章標籤

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

  • 個人分類:Qt
▲top
  • 11月 12 週六 202221:06
  • 安裝Qt Creator


 
點選Download Qt
(繼續閱讀...)
文章標籤

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

  • 個人分類:Qt
▲top
  • 10月 01 週五 202110:20
  • Qt QML Book

Qt6 QML Book
(繼續閱讀...)
文章標籤

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

  • 個人分類:Qt
▲top
  • 1月 04 週一 202116:53
  • How to import a C++ class from a dll file?


QLibrary - import a class
透過QLibrary載入動態函式庫並利用Qt Plugin設計軟體插件
How to export C++ class from dll
C++ Qt 98 - How to use a DLL
c語言怎麼呼叫dll檔案
(繼續閱讀...)
文章標籤

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

  • 個人分類:Qt
▲top
  • 9月 17 週四 202010:48
  • How to create a library with Qt and load an image using OpenCV

 
This following tutorial helps you to create a library with Qt
How to create a library with Qt and use it in an application
 
(繼續閱讀...)
文章標籤

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

  • 個人分類:Qt
▲top
  • 9月 14 週一 202016:26
  • A Simple Image Viewer Example Using Qt 5


 
 
mainwindow.h
#ifndef MAINWINDOW_H


#define MAINWINDOW_H


 


#include <QMainWindow>


#include <QMenuBar>


#include <QToolBar>


#include <QAction>


#include <QGraphicsScene>


#include <QGraphicsView>


#include <QStatusBar>


#include <QLabel>


#include <QGraphicsPixmapItem>


#include <QFileDialog>


 


 


QT_BEGIN_NAMESPACE


namespace Ui { class MainWindow; }


QT_END_NAMESPACE


 


class MainWindow : public QMainWindow


{


 Q_OBJECT


 


public:


 MainWindow(QWidget *parent = nullptr);


 ~MainWindow();


 


private:


 void initUI();


 void createActions();


 void showImage(QString filePath);


 void setupShortcuts();


 


private slots:


 void openImage();


 


private:


 Ui::MainWindow *ui;


 QMenu *fileMenu;


 QMenu *viewMenu;


 


 QToolBar *fileToolBar;


 QToolBar *viewToolBar;


 


 QGraphicsScene *imageScene;


 QGraphicsView *imageView;


 


 QStatusBar *mainStatusBar;


 QLabel *mainStatusLabel;


 


 QAction *openAction;


 


 QString currentImagePath;


 QGraphicsPixmapItem *currentImage;


 


};


#endif // MAINWINDOW_H


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

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

  • 個人分類:Qt
▲top
  • 6月 12 週五 202011:29
  • A collection of QGraphicsView tutorials and applications

image
C++ Qt 82 - Custom QGraphicsItem
Qt C++ 02 Mouse Scrolling with Custom Graphics View
Qt Training: Graphics View (part 2/3): Transformations and Coordinate Systems
(繼續閱讀...)
文章標籤

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

  • 個人分類:Qt
▲top
  • 5月 26 週二 202000:07
  • QThread tutorial part 2

image
This time we are going to create a new Object intead of using subclass of QThread,and all its job is transfer to a QThread instance by calling moveToThread method.You can find out details on youtube.
Let’s create a new project of window application and add new class, in which it accumaltes from 1 to 999. 
(繼續閱讀...)
文章標籤

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

  • 個人分類:Qt
▲top
12»

個人資訊

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,170)網路上提供測試 RTSP 的伺服器
  • (23,895)Adding Something to DataGridView
  • (4,380)安裝PLC學習軟體 FX-TRN-BEG-T
  • (7,366)建立和使用 C# 的 DLL
  • (3,658)安裝Open eVision 1.2.5.8549
  • (12,906)EmguCV : 圈選感興趣區域
  • (25,023)C# 如何創建, 暫停, 繼續, 終止一個執行緒(Thread)
  • (2,810)安裝ONVIF Device Manager

文章分類

  • 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

動態訂閱

文章精選

文章搜尋

誰來我家

參觀人氣

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