
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
me1237guy 發表在 痞客邦 留言(0) 人氣(3,039)

[AJAX/安裝] 無法載入檔案或組件 Web.Extensions 1.0 解決方式
有看到Web.Extension關鍵字的都是和AJAX有關的組件
如果明明在測試機開發上,AJAX都正常執行,部署到正式機時
me1237guy 發表在 痞客邦 留言(0) 人氣(714)

參考資料: RaspiCam: C++ API for using Raspberry camera with/without OpenCv 編輯程式
me1237guy 發表在 痞客邦 留言(0) 人氣(2,386)

先準備好一塊樹梅派和SD卡(16G) 首先, 在PC端先下載ImageWriter (win32diskimager-v0.9-binary) 下載官方作業系統Raspbian 2014-01-07-wheezy-raspbian 大概800MB, 解壓縮後約2.9GB
me1237guy 發表在 痞客邦 留言(0) 人氣(2,435)
Frame Filter 可直接針對影像串流(image stream)進行影像處理, 不需要額外複製一份至ring buffer然後才進行影像處理, 加快速度 可以定義影像串流(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) 人氣(302)
資料來源: http://www.programmer-club.com.tw/ShowSameTitleN/java/5307.html 對同樣一個類別, 卻實作多個物件, 區分如下:
^^^^^^^^^
final: 值永遠不變
static: 值永遠只有一個
final static: 唯一值且不可變
舉例說好了:
public class A {
...
final int fx = 5;
static int sx = 10;
...
}
import A;
public class B {
A x1 = new A(); //x1.fx=5, x1.sx=10
A x2 = new A(); //x2.fx=5, x2.sx=10
x1.fx = 20; //編譯錯誤: 因為fx是常數
x2.sx = 20; //x1.sx=20, x2.sx=20
A.sx = 30; //x1.sx=30, x2.sx=30
}
me1237guy 發表在 痞客邦 留言(0) 人氣(19)

先記錄一下心得: 調整ADT字體大小 1. 先輸入關鍵字搜尋font 2. 點選Java Editor Text Font, 按下Edit按鈕 預設10號字體, 改成14號字看起來舒服多了~~~~
me1237guy 發表在 痞客邦 留言(0) 人氣(86)

DFK 23GV024 The Imaging Source 軟體 1) Windows XP, Vista, 7 & 8 驅動程式 TIS GigE相機驅動程式 [2.47 MB]
me1237guy 發表在 痞客邦 留言(0) 人氣(1,358)

下載 OpenCV-2.4.8-android-sdk.zip 前一陣子安裝OpenCV2.1時發生一件悲劇, 系統變數Path竟然被OpenCV安裝時給直接取代掉, 確認系統Path變數有下列路徑 C:\Program Files (x86)\Java\jre6\bin
me1237guy 發表在 痞客邦 留言(0) 人氣(1,080)

The Bayer Color Filter 可以看成 3種濾波器, 分別接收R, G, B Color Filter Array定義如下: Color Filter Alignment
me1237guy 發表在 痞客邦 留言(0) 人氣(118)