You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
314 B

package main
func main() {
//first, read the example images
examplesImg := readExamples()
//fmt.Println(examplesImg)
//now, read the target image
timg := readImage("images/test.png")
//fmt.Println(timg)
numCoincidences := analyzeImg(examplesImg, timg)
_ = printSortedMapStringInt(numCoincidences, 0)
}