Skip to content

A set of experiments in pixel sorting using Processing

Notifications You must be signed in to change notification settings

enginarer/PixelSorting

This branch is 1 commit behind jeffThompson/PixelSorting:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e2239a3 · Jan 19, 2015

History

10 Commits
Jan 19, 2015
Jan 19, 2015
Jan 19, 2015
Jan 19, 2015
Jan 19, 2015
Jan 19, 2015
Jan 19, 2015
Jan 19, 2015
Jan 19, 2015
Jan 19, 2015
Jan 19, 2015
Jan 25, 2013
Jan 19, 2015
Feb 11, 2013

Repository files navigation

screenshot

Pixel Sorting

A set of experiments in pixel sorting using Processing

- - -

####Seed Sorting Using either edge-detection or random choice, start with a set of 'seed' pixels, grab all neighbors within a 1px radius, sort those, and repeat the process.

[ example ]

####Sort Image By Least Resistance Similar to the 'seam carving' example, this is a little softer movement across the image by looking for least change between the current pixel and its neighbors.

####Sort Image By N-px Sees the image as a linear list of pixel values (rather than 2d), sorting in chunks. Includes wrapping for weird distortions and patterns.

[ example ]

####Sort Image By N-px Block Similar to the previous, but sorts the image by blocks.

See this video this video for an example.

####Sort Pixel Portal Sorts a random column of pixels, then looks for the closest match to the last pixel in that column. Sorts and repeats. Imagined as a kind of "Chutes and Ladders" within the image.

####Sort Through Seam Carving Based on the algorithm used for Photoshop's "Content-Aware Scaling", find the path of "least energy" through the image, starting at the bottom center. That path is sorted, then shifted over 1px and repeated across the entire image. Versions include one phase, as well as rotate-and-iterate for serious pixel-mashing.

[ example ]

####Spiral Sort The entire image is loaded in order from outer edge in, then sorted and placed back.

[ example ]

- - -

[ all code available under Creative Commons BY-NC-SA license - feel free to use but please let me know ]

About

A set of experiments in pixel sorting using Processing

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Processing 98.0%
  • Shell 2.0%