Skip to content

Instantly share code, notes, and snippets.

View shiva-karthick's full-sized avatar
🎯
Focusing

Shiva Karthick shiva-karthick

🎯
Focusing
View GitHub Profile
@shiva-karthick
shiva-karthick / 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])