iT邦幫忙

鐵人檔案

第 12 屆 iThome 鐵人賽
回列表
自我挑戰組

軟體開發隨筆雜記--試著解決問題 系列

以python語言做的小型開發紀錄,如何聚焦問題重點,生出solution,不見得高明,但起碼可以work on。

參賽天數 30 天 | 共 33 篇文章 | 13 人訂閱 訂閱系列文 RSS系列文
DAY 21

[Python]打包用pyinstaller和 virtualenv

pyinstaller用在平常完成專案進度做打包的動作,但是沒有注意到環境設訂的很容易打包些不必要的python函式庫,造成生成的執行檔體積過大,不必要的函式庫...

2020-10-06 ‧ 由 KaliChen 分享
DAY 22

[Python]How to Extract Image Metadata in Python

顯示圖像內部資訊https://www.thepythoncode.com/article/extracting-image-metadata-in-pytho...

2020-10-07 ‧ 由 KaliChen 分享
DAY 23

[Python][OpenCV]如何利用Tesserect OCR做辨識

https://zh.wikipedia.org/wiki/Tesseracthttps://help.ubuntu.com/community/OCR imp...

2020-10-08 ‧ 由 KaliChen 分享
DAY 24

[Python][OpenCV]如何利用Tesserect OCR做翻譯器

借用google的翻譯功能 from googletrans import Translator 主模組參數設定 class tesserectOCR():...

2020-10-09 ‧ 由 KaliChen 分享
DAY 26

[Python] 把 mp4 轉換成 gif

https://www.programmersought.com/article/97253978617/ pip3 install MoviePy Coll...

2020-10-11 ‧ 由 KaliChen 分享
DAY 27

[Python]如何Text to Speech: pyttsx3, gTTS

https://pythonprogramminglanguage.com/text-to-speech/ pip3 install pyttsx3 Coll...

2020-10-12 ‧ 由 KaliChen 分享
DAY 28

[Python]如何Speech to Text: SpeechRecognition

https://pypi.org/project/SpeechRecognition/ pip3 install SpeechRecognition Coll...

2020-10-13 ‧ 由 KaliChen 分享
DAY 29

[Python]Natural Language Toolkit

http://www.nltk.org/NLTK 是一個主流用於自然語言處理的 Python 庫 import nltk nltk.download() p...

2020-10-14 ‧ 由 KaliChen 分享
DAY 30

[Python]如何使用selenium

python網路爬蟲教學-Selenium基本操作download chrome drivehttps://www.whatismybrowser.com/de...

2020-10-15 ‧ 由 KaliChen 分享

[C]如何寫一個 makefile

func1.h #ifndef _FUNC1_H_ #define _FUNC1_H_ void func1print(); #endif func1.c #...

2020-10-16 ‧ 由 KaliChen 分享