跳到主要內容

發表文章

2013百度黑客松活動筆記

智慧捕蚊燈 poll action 百度地圖視覺化汙染 打卡地點的空氣品質總分 加分:搭乘公交 give版XD collaborative filtering 情境燈 高設計感  click game 效率高手 番茄時鐘理論  25min work, 5min sleep ipHone APP 停車系統 ------------------ 作品明確目標 時間管控 英文 簡體簡報 考慮市場 別人做過的呢? 誰想用? hack做給自己爽 你會為了你的問題持續睡不著覺1個月嗎? 讓你很痛 解決後很爽 問題不夠痛 沒人會付錢 市場的洞見,問題定義 DEMO好 形勝於演 很多成功的app 好玩fun PK大咖 https://play.google.com/store/apps/details?id=cn.jingling.motu.photowonder&hl=zh_TW 找你妹 https://play.google.com/store/apps/details?id=org.funship.findsomething.channel_91&hl=zh_TW 百度看中web apps 看中軟硬結合項目 想法很多,但能實現想法的人太少太少 ------------------------------------------------------------- 關注微博消息 http://huati.weibo.com/263220?from=510&order=time&filter=all

Processing, OpenNI, Kiect 的骨架ID

  Map<String, Object> mp=new HashMap<String, Object>();   mp.put("SKEL_HEAD", 1);   mp.put("SKEL_NECK", 2);   mp.put("SKEL_LEFT_SHOULDER", 6);   mp.put("SKEL_LEFT_ELBOW", 7);   mp.put("SKEL_LEFT_HAND", 9);   mp.put("SKEL_RIGHT_SHOULDER", 12);   mp.put("SKEL_RIGHT_ELBOW", 13);   mp.put("SKEL_RIGHT_HAND", 15);   mp.put("SKEL_TORSO", 3);   mp.put("SKEL_LEFT_HIP", 17);   mp.put("SKEL_LEFT_KNEE", 18);   mp.put("SKEL_LEFT_FOOT", 20);   mp.put("SKEL_RIGHT_HIP", 21);   mp.put("SKEL_RIGHT_KNEE", 22);   mp.put("SKEL_RIGHT_FOOT", 24); /* SimpleOpenNI.SKEL_HEAD SimpleOpenNI.SKEL_NECK SimpleOpenNI.SKEL_LEFT_SHOULDER SimpleOpenNI.SKEL_LEFT_ELBOW SimpleOpenNI.SKEL_LEFT_HAND SimpleOpenNI.SKEL_RIGHT_SHOULDER SimpleOpenNI.SKEL_RIGHT_ELBOW SimpleOpenNI.SKEL_RIGHT_HAND SimpleOpenNI.SKEL_TORSO SimpleOpenNI.SKEL_LEFT_HI...

Processing如何以網址為參數讀取JSON

/ The following short JSON file called "data.json" is parsed // in the code below. It must be in the project's "data" folder. // // { // "id": 0, // "species": "Panthera leo", // "name": "Lion" // } JSONObject json; void setup() { json = loadJSONObject("data.json"); int id = json.getInt("id"); String species = json.getString("species"); String name = json.getString("name"); println(id + ", " + species + ", " + name); } // Sketch prints: // 0, Panthera leo, Lion http://processing.org/reference/loadJSONObject_.html

Processing 2 輸出中文字超簡單!

/* Processing輸入中文好簡單 DDLab,LFking */ PFont myFont; void setup() {   size(640, 360);   background(0);   myFont = createFont("標楷體",100);   /* 直接輸入字型名稱,只要電腦有安裝該自行即可顯示 */   textFont(myFont); } void draw() {   textSize(30);   text("數位藝術,Nice", 0 ,height/2); } 原始碼下載 https://github.com/ygtw/Processing_chinese_font