python opencv加载使用内存中的图片数据

接受服务器传来图片img = request.files.get(‘img’)
转换img=skimage.io.imread(img)
就可以使用了
比如说用于cv2.imshow(“Output (press any key to close)”, img)
image=img
(imH, imW) = image.shape[:2]

你可能感兴趣的:(python,opencv)