Open live version
Make Pop Art
Turn any image into pop art with Wolfram Language image processing functions.
code
Colorize[ImageForestingComponents[
ExampleData[{"TestImage", "House2"}], Automatic, 10]]
how it works
This example was live-coded at the Wolfram Research booth at SXSW, March 9, 2014.
Grab an image from built-in Wolfram Language test data:
image = ExampleData[{"TestImage", "House2"}]
Break the image down into components:
imageComponents = ImageForestingComponents[image, Automatic, 10];
Give each component a different color:
Colorize[imageComponents]