Category Archives: 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, … Continue reading

Posted in Python, Raspberry Pi | Leave a comment

[雲端運算] 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)  有興趣的讀者,可以自行看看原文解釋。 … Continue reading

Posted in 3C產品, Python, 程式設計, 網路, 網頁撰寫, 資工, 雲端運算 | 2 Comments

[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/

Posted in Python, 程式設計 | Leave a comment