image

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

加入參考

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

參考資料: Form.AcceptButton 屬性 能做什麼?

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

using System;

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

using System;

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

namespace WebCam

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

加入參考:

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

  • Jun 23 Mon 2014 21:11
  • PLC

加入參考

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

 

參考資料: Using GPU_FFT with data 

             Using GPU_FFT with data – part2


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

===============================================================================================================

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

安裝ALSA

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

Download touch-pack-web

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

As of the current version, touchlib now can broadcast events in the TUIO

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

A simple C++ Open Sound Control (OSC) packet manipulation library

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


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


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

Pylon.NETSupportLibrary 是一個好用類別, 加速開發應用程式, 達事半功倍之效

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

MobaXterm download

image

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

Step 1. Open one of c# sample projects:

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

註冊eVision元件

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

Windows (Win32 Installer)

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

using System;

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

using System;

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

image

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

>> mex –setup

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

下圖中紅色塑膠套: 可以接四組天線

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

image

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

image

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

image

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

[AJAX/安裝] 無法載入檔案或組件 Web.Extensions 1.0 解決方式

 

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

參考資料:

RaspiCam: C++ API for using Raspberry camera with/without OpenCv

 

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

先準備好一塊樹梅派和SD卡(16G)

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

Frame Filter

  1. 可直接針對影像串流(image stream)進行影像處理, 不需要額外複製一份至ring buffer然後才進行影像處理, 加快速度
  2. 可以定義影像串流(image stream)之影片格式(video format), 以便儲存成不同格式

With frame filters, a versatile and powerful way to manipulate image data has been introduced. Frame filters can be used to do:

  • control which frames will be removed (dropped) from the image stream
  • read and write image data to/from frames of the image stream without having to copy the image data to a ring buffer. In other words: the frame filter allows image processing directly on buffers of the image stream (DirectShow buffers).
  • to change the video format (pixel format and/or width and height) of the image stream
  • implement image processing

 

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

資料來源: http://www.programmer-club.com.tw/ShowSameTitleN/java/5307.html

對同樣一個類別, 卻實作多個物件, 區分如下:

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

先記錄一下心得:  調整ADT字體大小

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

DFK 23GV024

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

下載 OpenCV-2.4.8-android-sdk.zip

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

The Bayer Color Filter 可以看成

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

   1: function lCOM_Port = getAvailableComPort()
   2: % function lCOM_Port = getAvailableComPort()
   3: % Return a Cell Array of COM port names available on your computer
   4:  
   5: try
   6:     s=serial('IMPOSSIBLE_NAME_ON_PORT');fopen(s); 
   7: catch
   8:     lErrMsg = lasterr;
   9: end
  10:  
  11: %Start of the COM available port
  12: lIndex1 = findstr(lErrMsg,'COM');
  13: %End of COM available port
  14: lIndex2 = findstr(lErrMsg,'Use')-3;
  15:  
  16: lComStr = lErrMsg(lIndex1:lIndex2);
  17:  
  18: %Parse the resulting string
  19: lIndexDot = findstr(lComStr,',');
  20:  
  21: % If no Port are available
  22: if isempty(lIndex1)
  23:     lCOM_Port{1}='';
  24:     return;
  25: end
  26:  
  27: % If only one Port is available
  28: if isempty(lIndexDot)
  29:     lCOM_Port{1}=lComStr;
  30:     return;
  31: end
  32:  
  33: lCOM_Port{1} = lComStr(1:lIndexDot(1)-1);
  34:  
  35: for i=1:numel(lIndexDot)+1
  36:     % First One
  37:     if (i==1)
  38:         lCOM_Port{1,1} = lComStr(1:lIndexDot(i)-1);
  39:     % Last One
  40:     elseif (i==numel(lIndexDot)+1)
  41:         lCOM_Port{i,1} = lComStr(lIndexDot(i-1)+2:end);       
  42:     % Others
  43:     else
  44:         lCOM_Port{i,1} = lComStr(lIndexDot(i-1)+2:lIndexDot(i)-1);
  45:     end
  46: end    

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

選取要複製的專案目錄夾

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

image

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

image

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

目的: 在文字編輯方塊中輸入內容, 按下按鈕後取得剛才輸入的內容並顯示在另一個TextView上

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

定義字串strings.xml

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

開啟新Android應用專案

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

workspace的路徑: C:\Users\ryan\workspace\

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

http://developer.android.com/sdk/index.html

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

在之前Visual Studio 2010, 可以找到Windows Form應用程式

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

PC-Based 示波器

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

CommCamUCL2.3.1 for Windows 64bit

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

將目前目錄頰下的所有mp4檔案進行縮小轉檔,以下為MATLAB程式碼

   1: mkdir('out');
   2: files = dir('*.mp4');
   3: bitrate = 2000;
   4: outputFolder = ['out' filesep];
   5: c1 = 'ffmpeg -i ';
   6: c2 = [' -vf scale=640:480 -threads 0 '];
   7: c3 = outputFolder;
   8: fid = fopen('batchrun.bat','w');
   9: for k=1:length(files)
  10:    cmd = [c1 files(k).name c2 c3 files(k).name];
  11:    fprintf(fid, '%s\n', cmd);
  12: end
  13: fclose(fid);

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

Emgu sourceforge下載libemgucv-windows-universal-cuda-2.9.0.1922-beta.exe
Emgu官方網頁
image

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

首先, 新增一個專案名稱“MouseClickAndDraw”

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

Qt 5.2

我的SONY NB Win7 64 bit選擇 Qt 5.2.0 for Windows 64-bit (VS 2012, 590 MB) (Info)

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

專案設定

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

CRT(C執行時期函式庫)在編譯前須先設定preprocessor, 加入_CRT_SECURE_NO_WARNINGS

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

利用ofstream寫入檔案, ifstream讀入檔案

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

使用WindowsAPI進行WriteFile 和 ReadFile

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

開啟新專案

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

工具->選項->文字編輯器->所有語言->勾選<行號>

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

Close

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

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

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

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

reload

請輸入左方認證碼:

看不懂,換張圖

請輸入驗證碼