COS 226

Seam Carving
Checklist

assignment

Frequently Asked Questions (General)

How do I manipulate images in Java? Use our Picture data type (which is part of algs4.jar) and Java’s java.awt.Color data type. Luminance.java and Grayscale.java are example clients.

I noticed that the Picture API has a method to change the origin (0, 0) from the upper left to the lower left. Can I assume (0, 0) is the upper left pixel? Yes (and you should not call this method).

Frequently Asked Questions (SeamCarver)

Must the arguments to removeHorizontalSeam() and removeVerticalSeam() be minimum energy seams? No. Each method should work for any valid seam (and throw an exception for any invalid one).

The SeamCarver data type is mutable. Must I still defensively copy of the Picture objects? A data type should not have side effects (unless they are specified in the API). It should behave properly as prescribed even if the client mutates the Picture object passed to the constructor or returned from the picture() method. As a result, you might need to make defensive copies of any Picture objects that you either take as input or return as output.

Why does the energy function wrap around the image? This is one of several reasonable conventions. Here are a few advantages of defining it in this way:

Why can’t seams wrap around the image (i.e., why not treat the image as a torus when computing seams)? While it would be consistent with the way that we define the energy of a pixel, it often produces undesirable visual artifacts.

Can I use dynamic programming? Yes, though, in this context, dynamic programming is equivalent to the topological sort algorithm for finding shortest paths in DAGs. If you take a more advanced algorithms course (such as COS 423), you’ll learn about dynamic programming in great detail.

My program is using recursion to find the shortest energy path. Is this okay? You should not need recursion. Note that the underlying DAG has such special structure that you don’t need to compute its topological order explicitly.

My program seems to be really slow. Any advice? We recommend that you implement the first four of these optimizations. The last one is intended to help you improve your rank in the leaderboard.

How do I determine the running time as a function of W and H? Analyze the code and formulate a hypothesis. Confirm your hypothesis with empirical evidence, as on the percolation assignment.

Which values of W and H should I use when timing? Choose W and H so that the resulting running time exceeds 0.5 seconds for all of your experimental points. You may do multiple trials for the same values of W and H to reach 0.5 seconds.

How much memory can my SeamCarver object use as a function of W and H? A Picture objects uses ~ 4W H bytes of memory—a single 32-bit int per pixel. Unless you are optimizing your program by updating only the energy values that change after removing a seam, you should not need to maintain the energy values in an instance variable. Similarly, the distTo[][] and edgeTo[][] arrays should be local variables, not instance variables. For reference, a Color object consumes 48 bytes of memory.

Testing

Clients.  You may use the following client programs to test and debug your code.

Sample input files.   Download seam.zip contains these client programs above along with some sample image files. You can also use your own image files for testing and entertainment.

Your code should work no matter the order or how many times the methods are called. A good test would be to find and remove a seam, but then make sure that finding and removing another seam also works. Try all combinations of this with horizontal and vertical seams.

Possible Progress Steps

These are purely suggestions for how you might make progress. You do not have to follow these steps.

  1. Start by writing the constructor, picture(), width(), and height(). Think about which instance variables you will need to support the instance methods. Once you have determined the representation, these should be easy.

  2. Next, write energy(). Calculating Δx2 and Δy2 are very similar. Use a private helper method to avoid code duplication. To test, use the client PrintEnergy.java, fescribed in the testing section above.

  3. To write findVerticalSeam(), you will want to first make sure you understand the topological sort algorithm for computing a shortest path in a DAG.

  4. Now implement removeVerticalSeam(). Typically, it will be called with the output of findVerticalSeam(), but be sure that it works for any valid seam. To test, use the client ResizeDemo.java, described in the testing section above.

  5. To implement findHorizontalSeam() and removeHorizontalSeam(), transpose the picture and call findVerticalSeam() and removeVerticalSeam(). Don’t forget to transpose the picture back, when needed.

A video is provided for those wishing additional assistance. Warning: the video was made in early 2014 and is somewhat out of date. For example the API has changed.