Cv2 Image Object to Base64 String

print( base64.b64encode( cv2.imencode( '.jpg', image )[1] ) )
Wicked Wolf