Skip to content

Instantly share code, notes, and snippets.

View alielbashir's full-sized avatar
🎯
Focusing

Ali Elbashir alielbashir

🎯
Focusing
View GitHub Profile
@alielbashir
alielbashir / app.py
Last active July 15, 2021 15:02
show python opencv image / video in flutter
from fastapi import FastAPI, responses
from uvicorn import run
import cv2
import numpy as np
app = FastAPI()
def _get_frame():
frame = np.random.randint(low=0, high=255, size=(480,640, 3), dtype='uint8')
@alielbashir
alielbashir / gist:a059aa8999aba2489cee11bdec43e426
Created July 13, 2021 16:27
Return random image as json frame
from fastapi import FastAPI
from uvicorn import run
import cv2
import numpy as np
import base64
app = FastAPI()