Category: Python

  • Raspberry Pi Camera + OpenCV

    If you are interested in how to use Raspberry Pi Camera + OpenCV to capture images, here is a great post in Chinese.  https://link.medium.com/k2aEqonas8 However, the post had something wrong. If you want to install OpenCV packages of Python 3, please use the command “apt-get install python3-opencv”. 

  • [雲端運算] Google Cloud Storage 來囉!

    Google Cloud Storage 開始試營運囉。什麼是Google Cloud Storage?Google Cloud Storage提供雲端儲存服務,具備RESTful (REpresentational State Transfer) 功能,根據”REST and RESTfull web service“這篇文章的說明,對RESTful做了以下闡釋: REST 把軟體視為 “資源”(Resource),以 URL (Uniform Resource Locator) 定位資源所在處。資源的使用者則藉由 HTTP 協定中所定義的”方法”(method)操作資源。REST 所稱的軟體,其實是資料與資料處理方法的包裝,也就是 OOP 中的 “個體”、”物件”。同時在 HTTP 中,也定義了四種基本方法,即 GET, POST, PUT, DELETE。以上四種基本方法大致上對應了四種資料處理動作,即 Create, Read, Update, Delete (CRUD)  有興趣的讀者,可以自行看看原文解釋。 Google Cloud Storage 服務提供了以下幾種特性: 快速、高延展性與高可靠度的物件儲存服務 所有資料皆複製好幾份到Google雲端資料中心 讀寫同步 物件大小可達TB等級,支援可恢復性的上傳、下載以及Range-GET。 Domain-scoped bucket命名空間 簡單、彈性 、具驗證以及共享能力 支援  OAuth 2.0…

  • [Python] Python教學文件

    Victor的Python教學http://ez2learn.com/index.php/python-tutorials Python 3.1教材http://pydoing.blogspot.com/p/python-tutorial.html Python 2.0教學文件(譯者:周譯樂)http://loda.hala01.com/python/ Dive into Python3http://diveintopython3.org/