Skip to content

Instantly share code, notes, and snippets.

View schoolsplay's full-sized avatar

Stas Zytkiewicz schoolsplay

View GitHub Profile
@ExpandOcean
ExpandOcean / kivy_cv.py
Created January 7, 2015 06:48
kivy and opencv work together demo
# coding:utf-8
from kivy.app import App
from kivy.uix.image import Image
from kivy.clock import Clock
from kivy.graphics.texture import Texture
import cv2
class KivyCamera(Image):
def __init__(self, capture, fps, **kwargs):