export interface Image {
    path: string,
    width: number,
    height: number,
    content: number[][]
}
