Skip to content

Instantly share code, notes, and snippets.

View dowlingw's full-sized avatar
☁️
True Cloud Believer

Will Dowling dowlingw

☁️
True Cloud Believer
View GitHub Profile
@dowlingw
dowlingw / main.go
Created June 4, 2019 14:05
gocv yolov3 troubleshooting
package main
import (
"fmt"
"gocv.io/x/gocv"
"image"
)
const vehicleWeights = "data/yolov3/yolov3.weights"
const vehicleNetcfg = "data/yolov3/yolov3.cfg"
kind: Deployment
apiVersion: apps/v1beta2
metadata:
name: grafana
labels:
k8s-app: grafana
spec:
selector:
matchLabels:
k8s-app: grafana
@dowlingw
dowlingw / maze.cs
Created August 26, 2013 14:35
A stupid attempt at writing a depth-first maze generator in C#
internal class Maze
{
public uint DimX { get; private set; }
public uint DimY { get; private set; }
public int ExitIdx { get; private set; }
private MazeCell[,] _cells;
public bool[,] Grid { get; private set; } // true denotes there is no wall in this block