'''
Created on Oct 27, 2011

@author: rcd
'''
import ImageProcessing


# file names to change
input_file = "duke_logo.png"
# load image and get data to manipulate
image = ImageProcessing.open_image(input_file)

# TODO: modify image by applying variety of filters
image = ImageProcessing.apply_filter(image, ImageProcessing.identity)

# show results
image.show()
