Fluidr
about   tools   help   Y   Q   a         b   n   l
User / Quasimondo
Mario Klingemann / 11,966 items

N 220 B 289.6K C 90 E May 10, 2009 F May 10, 2009
  • DESCRIPTION
  • COMMENT
  • O
  • L
  • M

Preliminary result of a little competition between me and Ralph Hauwert (who had the initial idea) with the goal to write an image encoder/decoder that allows to send an image in a tweet. The image on the left is what I currently manage to send in 140 characters via twitter.

This is the tweet for the image:
圑嘌婂搒孵怤實恄幖戰怴搝愩娻屗奊唀唭嚟帧啜徠山峔巰喜圂嗊埯廇嗕患嚵幇墥彫壛嶂壋悟声喿墰廚埽崙嫖嘵奰恛嬂啷婕媸姴嚥娐嗪嫤圣峈嬻尤囮愰啴屽嶍屽嶰寂喿嶐唥帑尸庠啞彐啯廂喪帄嗆怠嗙开唅恰唦慼啥憛幮悐喆悠喚忐嗳惐唔戠啹媊婼捐啸抃岖嗅怲幀嗈拀唹坭嵄彠喺悠單囏庰抂唋岰媮岬夣宐彋媀恦啼彐壔姩宔嬀

I am using chinese characters here since in UTF-8 encoding they allow me to send 210 bytes of data in 140 chars. In theory I could use the whole character code range from 0x0000-0xffff, but there are several control chars among them which probably could not be sent properly. With some tweaking and testing it would be possible to use at least 1 or 2 more bits which would allow to sneak 17 or 35 more bytes into a tweet, but the whole encoding would be way more nasty and the tweets would contain chars that have no font representation.

Besides this char hack there are a few other tricks at work in the encoding. I will reveal them over time. For now I just mention the difficulties involved here:

A typical RGB color needs 24 bits which is 3 bytes. This means if you just stored raw colors you could send 70 colors. Unfortunately you couldn't send anything else. At least that would allow you to send a 7x10 pixel matrix.

The worst way to store one full x/y coordinate would be 2 times 4 bytes, which is 26 coordinates in one tweet. That's 8 triangles. Obviously you have to do some concessions with the precision here. 2 bytes per number maybe? Gives you 52 points or 17 triangles. Unfortunately those come without color info.


--- Additional info added on May 12th --
Looks like my little project got a bit of attention lately, so I guess I should explain a few more of the details.

The image file format currently looks like this:

[0x00-0x17] 8 color lookup table, each RGB color is 24 bit

[0x18] approximate image proportions, stored in 2 x 4 bits, the proportion is (v >> 4) / (v&4) - which means the actualy physical size of the image is not stored, which is not necessary since it gets rendered in vectors anyway. So the height will be derived from the available width.

[0x19-0xD0] 61 points with color info each stored in 3 bytes:
The first two bytes are the x and the y position whereby their final position is calculated byte / 0xff * displayWidth and byte / 0xff * displayHeight

The color info is stored in the third byte and the way it is done is quite nifty I think: since my lookup table stores only 8 colors I just need 3 bits to store an index to a color. This would leave me with 5 unused bits. So I use these additional bits to give me a wider range of colors by creating blends between the colors in the table. So additionally to one color index I store another color index in the same byte. The remaining 2 bits I use as the blending factor. 2 bits allow for 4 different values. The ones I pick are 0 = 0.125, 1=0.25, 2=0.375, 4 = 0.5. I don't need any higher values since I can simply switch the order of the "upper" and "lower" color to get the same result as e.g. 0.75. I also do not need 0 or 1 since if I want a full color I just mix two times the same color. The 0.5 is a bit of a waste since it means I get the same mix in both directions, maybe it would be smarter to use 0.45 in this case. Overall this trick means that instead of just 8 colors I have a choice of about 256 shades of color.

The actual creation of the image is an evolutionary algorithm. I start by quantizing the image's colors to get 8 representative colors. And I scatter the 61 points over the image area. At each point I read the pixel color of the blurred image and choose the closest shade I can create with my extended color table. With this data I greate a binary "gene" ( the encoded version of is the chinese twitter tweet). From the gene I create a voronoi diagram which is the image you see on the left.

In order to get the best representation (meaning best positions of points and their choice of color) I compare the rendered image with the original by summing up the squared difference of the pixel colors and dividing it by the amount of pixels. The result is the fitness value. The ideal value would be 1 which meant that there is no difference at all between original and rendered image, but obviously that is impossible to reach for most images.

After calculating the fitness value I clone the gene and make a few random mutations to it. Once again I calculate the fitness of the mutation and if it is higher than of its parent the mutation becomes the new parent. This process can run indefinitely but usually the rate of improvement decreases rapidly after a few minutes.

My current goal is to figure out the optimum ways to get good results quickly.

Tags:   twitter tweet mona lisa evolutionary genetic programming flash encoding decoding utf-8 hack limitation quasimondo

N 113 B 37.8K C 16 E May 31, 2010 F May 31, 2010
  • DESCRIPTION
  • COMMENT
  • O
  • L
  • M

Combining circle packing with data visualization. The pie charts show the distribution of the dominant colors under the circle area.

The circle packing technique used here is a combination of an image segmentation with a distance transform and the first one who came up with it is John Balestrieri: www.flickr.com/photos/tinrocket/

Tags:   circle packing data visualization van gogh circles pie chart diagram colors generated infographics pie packing

N 26 B 3.2K C 19 E Aug 31, 2009 F Aug 31, 2009
  • DESCRIPTION
  • COMMENT
  • O
  • L
  • M

Something I wrote in my holidays. Made with these source images:

www.flickr.com/photos/quasimondo/3224159220
www.flickr.com/photos/quasimondo/3089705818
www.flickr.com/photos/quasimondo/3423977119

Tags:   collage scraps snippets photos generated evolutionary art quasimondo Mario Klingemann flash pixel bender pulp Collagenerator

N 102 B 21.7K C 20 E Aug 30, 2011 F Aug 30, 2011
  • DESCRIPTION
  • COMMENT
  • O
  • L
  • M

Interactive Object
29 x 47 x 4 cm
Wood, Acrylic, Alkyd Paint, VFD-Display, Arduino

Will be shown at the "Ultra Social" UAMO-Festival 2011 in Munich

Edition of 12, please contact me if you are interested in acquiring one.

Tags:   art object like button mario klingemann quasimondo uamo arduino social facebook vfd display

N 14 B 7.6K C 10 E Jun 5, 2010 F Jun 5, 2010
  • DESCRIPTION
  • COMMENT
  • O
  • L
  • M

Combining circle packing with data visualization. The pie charts show the distribution of the dominant colors under the circle area.

The circle packing technique used here is a combination of an image segmentation with a distance transform and the first one who came up with it is John Balestrieri: www.flickr.com/photos/tinrocket/

Tags:   circle packing pie packing circle circles chart diagram generated


5 of 11,966