Computer Graphics, Spring 2025

Michael Kazhdan


Assignment 1: Image Processing

Due on February 15 (Saturday) at 11:59 PM


Announcements


Overview

In this assignment you will create a simple image processing program, a pared-down version of Adobe Photoshop or The Gimp. The operations that you implement will be mostly filters which take in an input image, process the image, and produce an output image.

Note: The code support for reading BMP files is somewhat limited. (Specifically, it will only work if they are three-channel images with one byte per channel. Otherwise it carshes gracelessly.) You can either use JPEG images, or try using the provided test images.)


Getting Started

You should use the code (Assignments.zip) as a starting point for your assignment. We provide you with numerous files, but you should only have to change image.todo.cpp and lineSegments.todo.cpp.

After you download the files, the first thing to do is compile the program. To do this, you will first have to compile the Image, JPEG, and Util libraries and then compile the Assignment1 executable.


How the Executable Works

The executable runs on the command line. It reads an image from a specified file, processes the image using the filter specified by the command line arguments, and writes the resulting image to the specified file.
The command line parser is set up to read the arguments from the command line that are specified in the following format: First the parameter name is specified by pre-pending with two hyphens, and then the parameter values are enumerated. (Note that the number of arguments associated to each parameter are fixed in main1.cpp and the order in which the parameters are specified is ignored.)
For example, to increase the brightness of the image in.bmp by 10%, and save the result in the image out.bmp, you would type:
% Assignment1 --brighten 1.1 --in in.bmp --out out.bmp
To see the full list of possible arguments, you can simply type:
% Assignment1
This gives you a list of all the possible parameter names and the number and meaning of the associated parameter values. Bracketed parameters are optional (an input image file and an output image file need to be specified).
Note that since the order in which parameters are specified is ignored, if you want to apply two filters to a single image you can specify parameters for both filters, but you cannot control the order in which the filters are applied. For some filters, the order in which the filters are applied does not affect the output image while for others, the output image may depend on the order. (For the latter case, you can control the ordering by applying one filter, writing the output to a temporary image, and then applying the second filter to the temporary image.)
The current main1.cpp decides if the specified image file is Windows BMP file or a JPEG file based on the file extension.

What You Have to Do

The assignment is worth 30 points. The following is a list of features that you may implement (listed roughly from easiest to hardest). The number in front of the feature corresponds to how many points the feature is worth. The assignment will be graded out of 30 points. In addition to implementing these features, there are several other ways to get more points: For images or movies that you submit, you also have to submit the sequence of commands used to created them, otherwise they will not be considered valid.

It is possible to get more than 30 points. However, after 30 points, each point is divided by 2, and after 32 points, each point is divided by 4. If your raw score is 29, your final score will be 29. If the raw score is 33, you'll get 31.25. For a raw score of 36, you'll get 32.


What to Submit

Submission intstructions are specified here.
Note that the autograder does not grade your submission. Passing the autograder only means that an image has been successfully generated.
Please include the following in your submission: