Wolfram Language

External Services

Create Tattoo Outlines from an External Photo Album

If you have a tattoo, you may know that the first step for the tattoo artist is to get an outline of the design you want. If you have an album of tattoos, you can easily automate the process of downloading the images and create outlines for them.

First, connect to the Flickr API.

In[1]:=
Click for copyable input
flickr = ServiceConnect["Flickr"]
Out[1]=

And get your tattoo album.

In[2]:=
Click for copyable input
tattoos = flickr["AlbumImages", {"AlbumID" -> "72157670190121935", "Elements" -> "Images", MaxItems -> 5}]
Out[2]=

Create an outline for each.

In[3]:=
Click for copyable input
outlines = ColorNegate[EdgeDetect[#]] & /@ tattoos
Out[3]=

And choose your favorite ones.

In[4]:=
Click for copyable input
outlines[[1 ;; 3]]
Out[4]=

Now get your tattoo!

Out[5]=

Related Examples

de es fr ja ko pt-br ru zh