gpt4 book ai didi

javascript - 如何处理通过 websocket 通过 javascript 发送回 python 服务器的 blob?

转载 作者:太空宇宙 更新时间:2023-11-03 23:00:40 26 4
gpt4 key购买 nike

我必须使用 Opencv 在 python 服务器上处理图像。 blob 转到 python 服务器,但我无法弄清楚如何使用 openCV 将这个 blob 转换回图像

 //this is my javascript function to send image converted to blob, 
//back to my python server
function () {

ctx.drawImage(video, 0, 0, 320, 240);
var data = canvas.get()[0].toDataURL('image/jpeg', 1.0);
newblob = dataURItoBlob(data);
ws.send(newblob);

}

这是我的 python 后端处理

class EchoServerProtocol(WebSocketServerProtocol):

def onMessage(self, msg, binary):
img = # here the code to convert blob into the image
blur = cv2.blur(img, (5, 5))
hsv = cv2.cvtColor(blur, cv2.COLOR_BGR2HSV)
msg = hsv
print "the image:", msg
#conver the image back to blob and reply back to the websocket
#havent written the code for this part yet
self.sendMessage(msg, binary)

请帮我解决这个问题

最佳答案

检查这个 blob 是如何制作的,然后对其进行逆向工程

关于javascript - 如何处理通过 websocket 通过 javascript 发送回 python 服务器的 blob?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19275527/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com