Skip to content

Instantly share code, notes, and snippets.

View BBarbosa's full-sized avatar
🎯
Focusing

Bruno Barbosa BBarbosa

🎯
Focusing
  • AI4MedImaging, Medical Solutions
  • Braga, Portugal
View GitHub Profile
@kittinan
kittinan / client.py
Last active July 18, 2024 14:05
Python OpenCV webcam send image frame over socket
import cv2
import io
import socket
import struct
import time
import pickle
import zlib
client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
client_socket.connect(('192.168.1.124', 8485))
@EderSantana
EderSantana / CATCH_Keras_RL.md
Last active June 22, 2024 17:07
Keras plays catch - a single file Reinforcement Learning example