This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"gocv.io/x/gocv" | |
"image" | |
) | |
const vehicleWeights = "data/yolov3/yolov3.weights" | |
const vehicleNetcfg = "data/yolov3/yolov3.cfg" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind: Deployment | |
apiVersion: apps/v1beta2 | |
metadata: | |
name: grafana | |
labels: | |
k8s-app: grafana | |
spec: | |
selector: | |
matchLabels: | |
k8s-app: grafana |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |