Python OpenCV将图像转换为字节串?

时间:2013-07-31 09:59:36

标签: python image opencv binary

我正在使用PyOpenCV。如何将cv2映像(numpy)转换为二进制字符串,以便在没有临时文件和imwrite的情况下写入MySQL数据库?

我用Google搜索但没有找到任何内容......

我正在尝试imencode,但它不起作用。

capture = cv2.VideoCapture(url.path)
capture.set(cv2.cv.CV_CAP_PROP_POS_MSEC, float(url.query))
self.wfile.write(cv2.imencode('png', capture.read()))

错误:

  File "server.py", line 16, in do_GET
  self.wfile.write(cv2.imencode('png', capture.read()))
  TypeError: img is not a numerical tuple

帮助别人!

6 个答案:

答案 0 :(得分:54)

如果您有图像img(这是一个numpy数组),您可以使用以下方法将其转换为字符串:

>>> img_str = cv2.imencode('.jpg', img)[1].tostring()
>>> type(img_str)
 'str'

现在,您可以轻松地将图像存储在数据库中,然后使用以下命令恢复它:

>>> nparr = np.fromstring(STRING_FROM_DATABASE, np.uint8)
>>> img = cv2.imdecode(nparr, cv2.CV_LOAD_IMAGE_COLOR)

您需要将包含查询结果的变量STRING_FROM_DATABASE替换为包含该图像的数据库。

答案 1 :(得分:4)

capture.read()返回一个元组,(错误,img)。

尝试拆分:

_,img = capture.read()
self.wfile.write(cv2.imencode('png', img))

答案 2 :(得分:2)

我的代码使用opencv和python cgi:

    im_data = form['image'].file.read()
    im = cv2.imdecode( np.asarray(bytearray(im_data), dtype=np.uint8), 1 )
    ret, im_thresh = cv2.threshold( im, 128, 255, cv2.THRESH_BINARY )
    self.send_response(200)
    self.send_header("Content-type", "image/jpg")
    self.end_headers()      
    ret, buf = cv2.imencode( '.jpg', im_thresh )
    self.wfile.write( np.array(buf).tostring() )

答案 3 :(得分:1)

im = cv2.imread('/tmp/sourcepic.jpeg')
res, im_png = cv2.imencode('.png', im)
with open('/tmp/pic.png', 'wb') as f:
    f.write(im_png.tobytes())

答案 4 :(得分:1)

它可以在2020年使用numpy == 1.19.4和opencv == 4.4.0:

IsTsVectorExpressionIndex

答案 5 :(得分:0)

这里是一个例子:

def image_to_bts(frame):
    '''
    :param frame: WxHx3 ndarray
    '''
    _, bts = cv2.imencode('.webp', frame)
    bts = bts.tostring()
    return bts

def bts_to_img(bts):
    '''
    :param bts: results from image_to_bts
    '''
    buff = np.fromstring(bts, np.uint8)
    buff = buff.reshape(1, -1)
    img = cv2.imdecode(buff, cv2.IMREAD_COLOR)
    return img