Skip to content

Instantly share code, notes, and snippets.

View SKRD-18's full-sized avatar
๐ŸŽ‡
Focusing

SK SKRD-18

๐ŸŽ‡
Focusing
  • @NUS-Rover-Team National University Of Singapore
  • Singapore
  • 22:24 (UTC -12:00)
View GitHub Profile
@SKRD-18
SKRD-18 / opencv_video_to_pygame.py
Created December 11, 2018 18:11 — forked from radames/opencv_video_to_pygame.py
OpenCV VideoCapture running on PyGame
import pygame
from pygame.locals import *
import cv2
import numpy as np
import sys
camera = cv2.VideoCapture(0)
pygame.init()
pygame.display.set_caption("OpenCV camera stream on Pygame")
screen = pygame.display.set_mode([1280,720])