利用Python进行图片发送与接收的两种方法---包含客户端和服务器端代码

Posted 行走的祭祀

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用Python进行图片发送与接收的两种方法---包含客户端和服务器端代码相关的知识,希望对你有一定的参考价值。

第一种方法 opencv、requests、flask

此方法比较耗费时间 600毫秒左右

客户端代码

#coding:utf-8
import cv2
import json
import requests

img = cv2.imread("/home/aqonvs.jpg")
res = {"image": str(img.tolist()).encode(base64)}  # img是ndarray,无法直接用base64编码,否则会报错
_ = requests.post("http://192.71.30.172:8081", data=json.dumps(res))

服务器端代码

#coding:utf-8
from flask import request, Flask
import json
import numpy as np
import time
import cv2

app = Flask(__name__)

@app.route("/", methods=[POST])
def get_frame():
    start_time = time.time()
    res = json.loads(request.data)
    frame = eval(res["image"].decode("base64"))   # dtype为int32
    frame = np.array(frame, dtype=np.uint8)
    cv2.imwrite(/home/tmp.jpg,frame)
    duration = time.time() - start_time
    print(duration:[%.0fms] % (duration*1000))
    return 0000

if __name__ == "__main__":
    app.run("192.71.30.172", port=8081)  #端口为8081

第二种 直接利用文件传输 时间在10毫秒以内

客户端代码

#coding:utf-8

import requests
url = "xxxxx"
str000=/home/aqonvs.jpg
newname = str000.split(/)
print newname[len(newname)-1]
files = {file:(newname,open(/home/aqonvs.jpg,rb),image/jpg)}
r = requests.post(url,files = files)
result = r.text
print result

服务器端代码

#coding:utf-8
from flask import request, Flask
import time
import os
app = Flask(__name__)

@app.route("/", methods=[POST])
def get_frame():
    start_time = time.time()
    upload_file = request.files[file]
    old_file_name = upload_file.filename
    if upload_file:
        file_path = os.path.join(/home/local/upload/, old_file_name)
        upload_file.save(file_path)
        print "success"
        print(file saved to %s % file_path)
        duration = time.time() - start_time
        print(duration:[%.0fms] % (duration*1000))
        return success
    else:
        return failed


if __name__ == "__main__":
    app.run("127.0.0.1", port=5000)

 

以上是关于利用Python进行图片发送与接收的两种方法---包含客户端和服务器端代码的主要内容,如果未能解决你的问题,请参考以下文章

python利用mongodb上传图片数据 : GridFS 与 bson两种方式

前端图片上传的两种逻辑分析

Python根据 URL 读取网络图片的两种方式(OpenCV)

Python根据 URL 读取网络图片的两种方式(OpenCV)

python 读取并显示图片的两种方法

node.js接收异步任务结果的两种方法----callback和事件广播