Python影像辨識筆記(三):Open CV操作筆記

Yanwei Liu
17 min readApr 25, 2019

#2021/04/13更新OpenCV的DNN模組使用,在使用Intel CPU的情況下,可直接載入透過darknet, PyTorch, TensorFlow, ONNX......等framework訓練好的模型,並使用CPU進行Inference

https://learnopencv.com/deep-learning-with-opencvs-dnn-module-a-definitive-guide/

#2021/03/23更新OpenCV基礎入門(有圖片及程式碼解釋)

https://www.pyimagesearch.com/2018/07/19/opencv-tutorial-a-guide-to-learn-opencv/

#20210322更新Template Matching

https://www.pyimagesearch.com/2021/03/22/opencv-template-matching-cv2-matchtemplate/

#20200702更新Learn X in Y minutes的OpenCV教學

#20200430更新jennaweng0621所寫的OpenCV應用總整理,內容相當好,值得推薦

#20200324更新OpenCV讀取IP Camera內容

cap = cv2.VideoCapture('http://192.168.0.137:81/videostream.cgi?loginuse=username&loginpas=password&resolution=32')

#20200322更新OpenCV與Pillow格式互轉

https://gist.github.com/e96031413/3f8e2ddf63f7428776cda703cb6e4f31

--

--