Can I create the following program in Java:
(this is a very crude plan):
I need to be able to compare two images. All pictures will be screenshoots (so the resolution will/ should be the same for every image). First I will make "reference images" for (0-9). Then I take another sc and and "disect" the image to be in one-digit numbers (0-9). I will then compare them and find out the number that is in picture.
I was thinking along the lines: import image. Compare every pixel with the same pixel from "reference" picture. If the pictures are equal return true. If true then int x="referencal" image number.
If this is possible I only wish to know in what chapter I need to look (ArrayList, Classes, Swing......).