Java Exercise 10 & 12

Description:

Image handling with Java. This applet loads in any image in a compatible format (e.g. jpg, gif) and performs a filter on its corresponding pixel values.
It currently works on images of 24 bit color, or grayscale
The masks of choice is 5x5, enough for up to 3rd derivative approximations.
There are numerous ways of improving performance (which I'm well aware of), but I will let it be and consider instead just smaller sized images.
The masks used are part of a small library (MaskLib.java), which I created and will perhaps expand on.

For exercise 12 I included a field to enter the location of the image.
Make sure the image is at most 100X100 pixels, since it now currently crops that area of the image.

Source text


Back to Physics Simulation Personal Course Page