/**
 * Defines a filter method to modify images This simple interface is COMPLETE.
 * Don't change it.
 */

public interface Filter {
	/**
	 * Modify the image according to your algorithm
	 * 
	 * @param theImage
	 *            The image to modify
	 */
	void filter(PixelImage theImage);
}
