Skip to content

Instantly share code, notes, and snippets.

View davidrohweder's full-sized avatar
👋
I'd love to chat! My email is david01rohweder@gmail.com

David Rohweder davidrohweder

👋
I'd love to chat! My email is david01rohweder@gmail.com
View GitHub Profile
import SwiftUI
struct ContentView: View {
let svgURL = URL(string: "URL TO YOUR SVG")!
var body: some View {
WebView(url: svgURL)
}
}
import cv2
from picamera.array import PiRGBArray
from picamera import PiCamera
import time
# Initialize the camera
camera = PiCamera()
camera.resolution = (640, 480)
camera.framerate = 30
rawCapture = PiRGBArray(camera, size=(640, 480))