This commit is contained in:
2025-12-27 11:14:19 +01:00
parent 3f678f6d6e
commit d3329e1e19

View File

@@ -29,7 +29,8 @@ def detect() :
while True: while True:
ret, frame = cap.read() ret, frame = cap.read()
detection_service.get_fen(frame) fen = detection_service.get_fen(frame)
print(fen)
if not ret: if not ret:
print("Error: Failed to grab frame") print("Error: Failed to grab frame")
break break