摘要:
import numpy as np import cv2 as cv ''' numpy.zeros(shape, dtype=float, order='C') 参数: shape 整型或者整数序列,新数组的大小,比如 (2, 3) 或者 2. dtype 数据类型,可选参数,默认float, 阅读全文
摘要:
# -*- coding: utf-8 -*- import cv2 as cv import numpy as np ''' VideoCapture() 中参数为0:表示打开内置摄像头 参数为1:则打开外置摄像头 其他数字则代表其他设备 参数是视频文件的路径则打开指定路径下的视频文件 ''' # 阅读全文
摘要:
# -*- coding: utf-8 -*- import cv2 as cv import numpy as np from matplotlib import pyplot as plt #判断字符串是否是中文 def check_contain_chinese(check_str): for 阅读全文