I'm trying to develop a web application that will do the following:
The user will upload an image to the site, and the site will transfer the image to my server. Then, on the server side, I want to process the image.
The image consists of several small boxes arranged in a grid on a background. The boxes can have 5 possible borders, so I'm planning on using the presence of this border as a way to determine the location of one of the smaller images I want to process.
Code: Select all
______________________________
| |
| [] [] [] [] |
| [] [] [] [] |
| [] [] [] [] |
| [] [] [] [] |
| [] [] [] [] |
| [] [] [] [] |
|_____________________________|
As a real life example, lets say each of the [] would contain the face of a US president. Each of the photos would be in a database that I could access. I would want to identify the presidents in the photo.