(2020/05/04)
上星期與原禎老師討論如何將法蘭斯的自訂積木安裝在凱比平台,感謝法蘭斯老師的指導,終於成功的在凱比平台裝上法蘭斯的自訂積木,因此也可將AI偵測及辨識積木使用到凱比身上了
一、Chrome進入開發人員工具
二、新增及移除自訂積木
Chrome瀏覽器console指令:
新增自訂積木 Code.customTab.$__add__('https://fustyles.github.io/webduino/EDU_addCustomBlocks/blockly.json');
Chrome瀏覽器console指令:
移除自訂積木 Code.customTab.$__remove__('https://fustyles.github.io/webduino/EDU_addCustomBlocks/blockly.json');
(20220921補充:使用上面的程式,下方可不用理會了)
新增自訂積木
Code.customTab.$__add__('自訂積木設定');
移除自訂積木
Code.customTab.$__remove__('自訂積木設定');
自訂積木的連結網址
法蘭斯點矩陣 https://fustyles.github.io/webduino/EDU_bit_MatrixLed_20190827/blockly.json
遊戲元素 https://fustyles.github.io/webduino/GameElements_20190131/blockly.json
Javascript 指令擴充 https://fustyles.github.io/webduino/Instruction_20181213/blockly.json
朗讀語言擴充 https://fustyles.github.io/webduino/EDU_speak_setting/blockly.json
監看程式碼 (首頁開啟開發人員工具 http://localhost:20975/blockly/) https://fustyles.github.io/webduino/ShowCode_20181216/blockly.json
姿態辨識 (tfjs posenet) https://fustyles.github.io/webduino/posenet_20190822/blockly.json
物件辨識(tfjs mobilenet) https://fustyles.github.io/webduino/mobilenet_20190821/blockly.json
物件辨識(tfjs coco-ssd) https://fustyles.github.io/webduino/coco-ssd_20190821/blockly.json
臉部偵測 (tfjs face-api.js) https://fustyles.github.io/webduino/faceapi_20200124/blockly.json
臉部辨識 (tfjs face-api.js) https://fustyles.github.io/webduino/faceapi_20200402/blockly.json
深度學習 (tfjs KNN-Classifier) https://fustyles.github.io/webduino/knn-classifier_20190608/blockly.json
語音辨識 https://fustyles.github.io/webduino/SpeechRecognition_20191225/blockly.json
圖像分割 (tfjs deeplab) https://fustyles.github.io/webduino/deeplab_20200125/blockly.json
身體偵測 (tfjs bodypix2) https://fustyles.github.io/webduino/bodypix2_20200125/blockly.json
身體偵測 (tfjs bodypix1) https://fustyles.github.io/webduino/bodypix1_20200125/blockly.json
追蹤人臉 (Tracking.js) https://fustyles.github.io/webduino/Tracking_20190917/blockly.json
追蹤顏色 (Tracking.js) 待補
手勢辨識 (tfjs handpose) 待補
如要新增物件辨識(tfjs coco-ssd)積木
Code.customTab.$__add__('https://fustyles.github.io/webduino/coco-ssd_20190821/blockly.json');
如要移除物件辨識(tfjs coco-ssd)積木
Code.customTab.$__remove__('https://fustyles.github.io/webduino/coco-ssd_20190821/blockly.json');