摘要:
这个的学习主要是因为在运行目标检测的代码时总是会出现下面的错误: from Cython.Build import cythonize ModuleNotFoundError: No module named 'Cython' ERROR: Command errored out with exit 阅读全文
摘要:
# -*- coding: utf-8 -*- import cv2 import numpy as np def add_alpha_channel(img): """ 为jpg图像添加alpha通道 """ b_channel, g_channel, r_channel = cv2.split( 阅读全文