Skip to content

Instantly share code, notes, and snippets.

View JustineUgo's full-sized avatar
🏠
Working from home

Ogaraku Justine JustineUgo

🏠
Working from home
  • 127.0.0.1
View GitHub Profile
@mofesolapaul
mofesolapaul / nigeria-states.json
Last active May 15, 2024 14:39
List of all Nigerian states, alphabetically arranged in JSON array
[
"Abia",
"Adamawa",
"Akwa Ibom",
"Anambra",
"Bauchi",
"Bayelsa",
"Benue",
"Borno",
"Cross River",
@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):