Seam Carver - Image Processing

Seam Carver - Image Processing

May 2015

Technologies:

  • nodejs
  • html5canvas
  • algorithms
  • gulp
  • image-processing

Javascript implementation of a content-aware image resizing algorithm called seam carving. Crops an image by removing the “least important” seams in the image. An “unimportant” pixel refers to a pixel which is very similar to its surrounding pixels. A seam is like a one pixel column in the image which can zig-zag between adjancent pixels. A dynamic programming algorithm is used to calculate these seams efficiently.

Here I reimplement this famous algorithm in the browser! It is rare to see such a complex and powerful image processing algorithm in the browser and challenging to have it run smoothly. I also altered the original implementation to make my own optimization such that only affected pixels need be recalculated when a seam is removed.