Last updated 4 years ago
在 Mac 上架設 Jupyter Notebook 環境
使用 turi create 前,先設定好 Jupyter Notebook 環境
轉換 Jupyter(.ipynb) to Python(.py)
A Guide to Turi Create - WWDC2018
WWDC18, Session-712 Turi Create 重點整理
使用 Turi Create 製作圖案辨識的 App - Core ML and Vision
Object Detection
model 將識別目標物的 label 、大小及坐標
[{'coordinates': {'height': 104, 'width': 110, 'x': 115, 'y': 216}, 'label': 'ball'}, {'coordinates': {'height': 106, 'width': 110, 'x': 188, 'y': 254}, 'label': 'ball'}, {'coordinates': {'height': 164, 'width': 131, 'x': 374, 'y': 169}, 'label': 'cup'}]
利用合成的技巧,用少量的素材產生大量的圖資供 model 訓練用
Python : 用 PIL 做影像處理(合成)
Python: 圖像的縮放、旋轉與翻轉
from PIL import Image # 讀取圖像 im = Image.open("lenna.jpg" im.show() # 放為 128x128 im_resized = im.resize((128, 128)) im_resized.show() # 旋轉 im_rotate = im.rotate(45) im_rotate.show() # 翻轉 out = im.transpose(Image.FLIP_LEFT_RIGHT) out = im.transpose(Image.FLIP_TOP_BOTTOM) out = im.transpose(Image.ROTATE_90) out = im.transpose(Image.ROTATE_180) out = im.transpose(Image.ROTATE_270)
直接下載圖的好用工具
Google Images Download