- Oct 25 Tue 2016 20:12
-
Installing OpenCV 2.4.11-7 Components for Python(x,y)
- Oct 24 Mon 2016 09:31
-
Learning Python N-Dimensional Array - Part III

接續這兩篇 Learning Python N-Dimensional Array–Part I
Learning Python N-Dimensional Array-Part II
接下來, 利用Python 內建函式庫計算求和, 平均值 和方差
a = np.random.randint(0, 10, size=(4, 5))
a
Out[11]:
array([[7, 5, 1, 1, 2],[8, 8, 2, 8, 2],
[0, 3, 2, 7, 6],
[3, 9, 7, 8, 2]])
- Oct 19 Wed 2016 16:48
-
安裝Arduino 1.6.9

下載 arduino-1.6.9-windows 點選I agree, 繼續…預設路徑C:\Program Files (x86)\Arduino安裝USB驅動程式,點選<安裝>
參考資料
- Oct 18 Tue 2016 11:02
-
Learning Python N-Dimensional Array - Part II

接續這篇 Learning Python N-Dimensional Array–Part I接下來, 輪到結構陣列上場自定義一個資料結構 personType‘names’: 相當於欄位名稱, 後面接字串陣列 [‘name’, ‘age’, ‘weight’]‘formats’: 相當於資料型態, 後面接字串陣列 [‘S32’, ‘i’, ‘f’]
- Oct 17 Mon 2016 10:25
-
安裝Microsoft® SQL Server® 2014 Express
- Oct 16 Sun 2016 21:59
-
Bluetooth communication between Arduino and Windows 10

今天要來測試一下Arduino 透過Bluetooth和C# windows form通訊下載範例程式, 遇到得先安裝 UWA(Universal Windows App) Development Tool9GB空間還真肥@@
下圖[4]是UNO和BLT硬體接線圖參考資料1. Bluetooth communication between Arduino and Windows 8.12. Bluetooth Functions
- Oct 15 Sat 2016 23:09
-
Multiple RS232 Requirements for Arduino Applications
References1. Software serial multple serial test2. Two Port Receive3. Arduino RS232 連接轉換板
- Oct 13 Thu 2016 09:36
-
Learning Python N-Dimensional Array - Part I

為什麼要學習Python?可以從下列TIOBE 排行看出學習新的程式語言得先從基礎開始, 發現這種script-file language其實語法都和MATLAB, R語言 差不多
import numpy as np例如:產生一個向量[1, 2, 3, 4]
- Oct 12 Wed 2016 20:53
-
安裝spyderlib

今天第一次使用spyderlib, 這是一個由Python(x, y)所開發出來的整合開發環境, 跟MATLAB的人機介面有相當多雷同之處,可以方便觀察和修改陣列的值, 真是貼心的設計!!Download如果當初你是安裝64位元版本Python, 就必須下載spyder-2.2.5.win-amd64.exe否則下載spyder-2.2.5.win32.exe 這樣才有辦法使用附註:
- Oct 03 Mon 2016 11:27
-
Santech Camera Callback範例程式加入EmguCV像素控制

新專案名稱: SantechCallback開啟StCamUSBPack_EN_160325\3_SDK\StandardSDK(v3.10)\include準備加入StCamD.cs加入->現有項目->StCamD.cs開啟3_SDK\StandardSDK(v3.10)\Sample\VCSHARPNET2005\SampleCallback將CFPS.cs加入專案加入Emgu.CV Emgu.CV.UI Emgu.Util--------------------------------------------------------------------加入命名空間
using SensorTechnology;using SampleCallback;using System.Runtime.InteropServices;using Emgu.CV;using Emgu.CV.CvEnum;using Emgu.CV.Structure;
- Sep 23 Fri 2016 16:48
-
MATLAB編譯器找不到Jar檔案
今天試著編譯一個m檔案, 不過特別的地方是有用到jar檔案利用javaaddpath是無法讓compiler後的執行檔案找到對應jar檔案 1. 必須將jar放到 rootOfMATLAB\java\jar, 然後再進行編譯mcc –m 這樣編譯後才會找得到, 蝦~2. 經過一番努力google到[1], 原來MongoClient第二個參數有轉型@@
private static DB conectar() {
MongoClient mongoClient = null;
MongoCredential mongoCredential = MongoCredential
.createMongoCRCredential("trivialuser", "trivial",
"4btrivialmongouser".toCharArray()); try {mongoClient = new MongoClient(new ServerAddress(
"ds062797.mongolab.com", 62797),Arrays.asList(mongoCredential));
} catch (UnknownHostException e) {e.printStackTrace();
}
DB db = mongoClient.getDB("trivial"); System.out.println("Conexion creada con la base de datos"); return db;}
- Sep 07 Wed 2016 11:29
-
人臉特徵點擷取函式庫


