
OpenCV
williamyi96
PhD Student on Machine Learning, Optimization, Federated Learning, and Data-Efficient Learning.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
OpenCV 教程(1) -- 基本图像处理
以下参照OpenCV官网进行OpenCV的学习。使用的环境为jupyter notebook. 代码注释中已经有了详细的说明,因此不再进行文字赘述。import numpy as npimport cv2# Load an color image in grayscale# -1 represents IMREAD_COLOR -- Loads a clore image neglecting原创 2017-10-29 12:21:59 · 751 阅读 · 0 评论 -
OpenCV 教程(2) -- 基本视频处理
import numpy as npimport cv2# Capture Video from Cameracap = cv2.VideoCapture(0)while(True): # Capture frame-by-frame ret, frame = cap.read() # Out operations on the frame come here g原创 2017-10-29 12:57:48 · 1125 阅读 · 0 评论