如何使用OpencCV从Firebase读取图像?

问题描述 投票:-2回答:1

是否有使用OpenCV从Firebase读取图像的想法?还是我必须先下载图片,然后从本地文件夹执行cv.imread功能?

有什么办法可以只使用cv.imread(link_of_picture_from_firebase)

python firebase opencv pyrebase
1个回答
0
投票

这里是您可以如何:

  • 从磁盘读取JPEG,
  • 转换为JSON,
  • 上传到Firebase

然后您可以:

  • 从Firebase取回图像
  • 将JPEG数据解码回Numpy数组
  • 将检索到的图像保存在磁盘上

#!/usr/bin/env python3

import numpy as np
import cv2
from base64 import b64encode, b64decode
import pyrebase

config = {
   "apiKey": "SECRET",
   "authDomain": "SECRET",
   "databaseURL": "SECRET",
   "storageBucket": "SECRET",
   "appId": "SECRET",
   "serviceAccount": "FirebaseCredentials.json"
}

# Initialise and connect to Firebase
firebase = pyrebase.initialize_app(config)
db = firebase.database()

# Read JPEG image from disk...
# ... convert to UTF and JSON
# ... and upload to Firebase
with open("image2.jpg", 'rb') as f:
    data = f.read()
str = b64encode(data).decode('UTF-8')
db.child("image").set({"data": str})


# Retrieve image from Firebase
retrieved = db.child("image").get().val()
retrData = retrieved["data"]
JPEG = b64decode(retrData)

image = cv2.imdecode(np.frombuffer(JPEG,dtype=np.uint8), cv2.IMREAD_COLOR)
cv2.imwrite('result.jpg',image)
© www.soinside.com 2019 - 2024. All rights reserved.