[コメント&ダニエルに基づいて編集]このコードを使用して192.168.0.6:8081へのラズベリーパイからのストリーミングビデオ...TypeError: 'str'ではなく、バイトのようなオブジェクトが必要です。これにどのように対処しますか?
は
import numpy as np
import cv2
import socket
class VideoStreamingTest(object):
def __init__(self):
#self.server_socket = socket.socket()
#self.server_socket.bind(('192.168.0.6', 8081))
#self.server_socket.listen(0)
#self.connection, self.client_address = self.server_socket.accept()
#self.connection = self.connection.makefile('rb')
#self.streaming()
self.socket = socket.socket()
self.connection = self.socket.connect(('192.168.0.6', 8081))
#self.socket.connect(('192.168.0.6', 8081))
self.streaming()
def streaming(self):
try:
#print ("Connection from: ", self.client_address)
print ("Streaming...")
print ("Press 'q' to exit")
stream_bytes = b' '
while True:
stream_bytes += self.socket.recv(1024)
first = stream_bytes.find('\xff\xd8')
last = stream_bytes.find('\xff\xd9')
if first != -1 and last != -1:
jpg = stream_bytes[first:last + 2]
stream_bytes = stream_bytes[last + 2:]
#image = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8), cv2.CV_LOAD_IMAGE_GRAYSCALE)
image = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8), cv2.CV_LOAD_IMAGE_UNCHANGED)
cv2.imshow('image', image)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
finally:
#self.connection.close()
self.socket.close()
if __name__ == '__main__':
VideoStreamingTest()
*しかし、私は次のように取得していますエラー:(編集済み):(*
Streaming...
Press 'q' to exit
Traceback (most recent call last):
File "C:/Users/tiger/Desktop/take_the_stream_from_pi.py", line 48, in <module>
VideoStreamingTest()
File "C:/Users/tiger/Desktop/take_the_stream_from_pi.py", line 19, in __init__
self.streaming()
File "C:/Users/tiger/Desktop/take_the_stream_from_pi.py", line 32, in streaming
first = stream_bytes.find('\xff\xd8')
TypeError: a bytes-like object is required, not 'str'
私はこれをどのように取り組むのか? (PS:このプログラムと私のPCに自分のWebブラウザ上で動作192.168.0.6:8081パイカメラ()からストリーミングされたウィンドウを開くしようとすると)である
あなたのコードから 'self.connection.close()'を削除するだけです。 'socket'オブジェクトはすでに終了を処理します。整数ハンドルを閉じる必要はありません。 –
あなたのインデントは間違っていますが、カット/ペーストや本物のバグが原因であるかどうかはわかりません。 – TuanDT
は 'stream_bytes = b '''(バイト、文字列ではない)を定義します。しかし、回答を無効にするあなたの質問を大きく編集しました。(&コメント) –