Hello,
i keep getting a error thrown saying that it cant find the file. I have the image on the openmv but unsure why it isnt doing anything.
# Load coin template
template = image.Image("coin.bmp")
while(True):
# Capture image
img = sensor.snapshot()
# Find template match in image
match = img.find_template(template, 0.70)
# Check if match is found
if match:
print("YES")
else:
print("NO")