
光电设计
68lizi
这个作者很懒,什么都没留下…
展开
-
YOLOV3
https://github.com/pjreddie/darknet原创 2021-07-26 22:15:22 · 118 阅读 · 0 评论 -
usage: convert.py [-h] [-p] [-w] config_path weights_path output_pathconvert.py: error: the followi
运行 convert.py 文件把YOLO配置文件转换成keras适用的h5文件报错: usage: convert.py [-h] [-p] [-w] config_path weights_path output_path convert.py: error: the following arguments are required: config_path, weights_path, output_path Process finished with exit code 2 .原创 2021-07-25 14:41:50 · 1780 阅读 · 1 评论 -
树莓派Python安装TensorFlow
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn h5py==3.2.1 pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn grpcio==1.38.0 pip3 install -i https://pypi.t.原创 2021-07-24 00:04:13 · 434 阅读 · 1 评论 -
树莓派中 Python+opencv打开摄像头
树莓派中 Python+opencv打开摄像头 注意不要使用 cap = cv2.VideoCapture(0, cv2.CAP_DSHOW),我在树莓派使用这个的时候会报错,在windows不会报错,具体原因不清楚 cap = cv2.VideoCapture(0)# 使用cap = cv2.VideoCapture(0, cv2.CAP_DSHOW)会报错 while True: status,img = cap.read() if status: # 存在 cv原创 2021-07-23 22:24:40 · 1373 阅读 · 7 评论