Convert str to numpy.ndarray
问题 I'm creating a system to share video with opencv but I've got a problem. I've a server and a client but when I send informations to the server, the must be bytes. I send 2 things: ret, frame = cap.read() ret is a booland frame is the data video, a numpy.ndarray ret is not a problem but frame: I convert it in string and then in bytes: frame = str(frame).encode() connexion_avec_serveur.send(frame) I'd like now to convert again frame in a numpy.ndarray. 回答1: Your str(frame).encode() is wrong. If