Twitter 图像编码挑战 [英] Twitter image encoding challenge

查看:19
本文介绍了Twitter 图像编码挑战的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果一张图片值 1000 个字,那么 140 个字符可以容纳多少张图片?

注意:伙计们!赏金截止日期到了,经过一番艰难的考虑,我决定 支持的任何光栅格式都是合理的.

  • 您的程序必须输出可以用 140 个或更少的 Unicode 代码点表示的消息;U+0000U+10FFFF 范围内的 140 个码位,不包括非字符 (U+FFFE, U+FFFFU+nFFFEU+nFFFF 其中 n110 十六进制,范围 U+FDD0U+FDEF) 和代理代码点 (U+D800U+DFFF).它可以以您选择的任何合理编码输出;

    奖品

    我根据上述标准为我最喜欢的解决方案提供 500 代表赏金(加上 StackOverflow 启动的 50 代表).当然,我也鼓励其他人在这里投票选出他们最喜欢的解决方案.

    关于截止日期的说明

    这场比赛将一直持续到赏金用完为止,大约在 5 月 30 日星期六下午 6 点左右.我不能说它结束的确切时间;它可能是下午 5 点到 7 点之间的任何时间.我保证在下午2点之前查看所有提交的条目,并且我会尽力查看下午4点之前提交的所有条目;如果在那之后提交解决方案,我可能没有机会在我必须做出决定之前公平地看待他们.此外,您越早提交,您就越有机会投票帮助我选择最佳解决方案,因此请尝试尽早提交,而不是在截止日期前提交.

    Unicode 注释

    对于到底允许使用哪些 Unicode 字符也存在一些混淆.可能的 Unicode 代码点范围是 U+0000U+10FFFF.有一些代码点在任何开放的数据交换中都不能用作 Unicode 字符;这些是非字符代理代码点.非字符在

    Lena(编码 32.8 秒,解码 13.0 秒,477 字节):
    http://i42.tinypic.com/2rr49wg.png http://i40.tinypic.com/2rhxxyu.png

    蒙娜丽莎(编码 43.2 秒,解码 14.5 秒,490 字节):
    http://i41.tinypic.com/ekgwp3.png http://i43.tinypic.com/ngsxep.png

    中日韩统一字符

    Sam 在评论中询问如何将其与 CJK 一起使用.这是从 CJK 统一字符集中压缩为 139 个字符的蒙娜丽莎版本:

    http://i43.tinypic.com/2yxgdfk.png据蛥驞凄脒钍辦柒柒拗拗搽渐朐栘栘栃栃栃栃栃栾栃栾栾栃栃栃柒柒敽粳擎葙蔍螎葙峬覧绌蹔抢醢牙抢冧筇铜沄芯譶辍浍垝黧偞媞媙螎葙峬覧绌蹔抢颍冧筇颟染沄芯譶辍浍垝黧偞媞媙螎葙峬覧绌蹔抢颍冧筇颍铜沄芯譻滧偞媞媙童竽怆韠狨葳荻椋夽苤勐彳栃栃所有

    我用于这个的程序顶部的调优参数是:19, 19, 4, 4, 3, 10, 11, 1000, 1000.我还注释掉了number_assigned和codes的第一个定义,和取消注释掉它们的最后定义以选择 CJK 统一字符集.

    If a picture's worth 1000 words, how much of a picture can you fit in 140 characters?

    Note: That's it folks! Bounty deadline is here, and after some tough deliberation, I have decided that Boojum's entry just barely edged out Sam Hocevar's. I will post more detailed notes once I've had a chance to write them up. Of course, everyone should feel free to continue to submit solutions and improve solutions for people to vote on. Thank you to everyone who submitted and entry; I enjoyed all of them. This has been a lot of fun for me to run, and I hope it's been fun for both the entrants and the spectators.

    I came across this interesting post about trying to compress images into a Twitter comment, and lots of people in that thread (and a thread on Reddit) had suggestions about different ways you could do it. So, I figure it would make a good coding challenge; let people put their money where their mouth is, and show how their ideas about encoding can lead to more detail in the limited space that you have available.

    I challenge you to come up with a general purpose system for encoding images into 140 character Twitter messages, and decoding them into an image again. You can use Unicode characters, so you get more than 8 bits per character. Even allowing for Unicode characters, however, you will need to compress images into a very small amount of space; this will certainly be a lossy compression, and so there will have to be subjective judgements about how good each result looks.

    Here is the result that the original author, Quasimondo, got from his encoding (image is licensed under a Creative Commons Attribution-Noncommercial license):

    Can you do better?

    Rules

    1. Your program must have two modes: encoding and decoding.
    2. When encoding:

      1. Your program must take as input a graphic in any reasonable raster graphic format of your choice. We'll say that any raster format supported by ImageMagick counts as reasonable.
      2. Your program must output a message which can be represented in 140 or fewer Unicode code points; 140 code points in the range U+0000U+10FFFF, excluding non-characters (U+FFFE, U+FFFF, U+nFFFE, U+nFFFF where n is 110 hexadecimal, and the range U+FDD0U+FDEF) and surrogate code points (U+D800U+DFFF). It may be output in any reasonable encoding of your choice; any encoding supported by GNU iconv will be considered reasonable, and your platform native encoding or locale encoding would likely be a good choice. See Unicode notes below for more details.

    3. When decoding:

      1. Your program should take as input the output of your encoding mode.
      2. Your program must output an image in any reasonable format of your choice, as defined above, though for output vector formats are OK as well.
      3. The image output should be an approximation of the input image; the closer you can get to the input image, the better.
      4. The decoding process may have no access to any other output of the encoding process other than the output specified above; that is, you can't upload the image somewhere and output the URL for the decoding process to download, or anything silly like that.

    4. For the sake of consistency in user interface, your program must behave as follows:

      1. Your program must be a script that can be set to executable on a platform with the appropriate interpreter, or a program that can be compiled into an executable.
      2. Your program must take as its first argument either encode or decode to set the mode.
      3. Your program must take input in one or more of the following ways (if you implement the one that takes file names, you may also read and write from stdin and stdout if file names are missing):

        1. Take input from standard in and produce output on standard out.

          my-program encode <input.png >output.txt
          my-program decode <output.txt >output.png
          

        2. Take input from a file named in the second argument, and produce output in the file named in the third.

          my-program encode input.png output.txt
          my-program decode output.txt output.png
          

    5. For your solution, please post:

      1. Your code, in full, and/or a link to it hosted elsewhere (if it's very long, or requires many files to compile, or something).
      2. An explanation of how it works, if it's not immediately obvious from the code or if the code is long and people will be interested in a summary.
      3. An example image, with the original image, the text it compresses down to, and the decoded image.
      4. If you are building on an idea that someone else had, please attribute them. It's OK to try to do a refinement of someone else's idea, but you must attribute them.

    Guidelines

    These are basically rules that may be broken, suggestions, or scoring criteria:

    1. Aesthetics are important. I'll be judging, and suggest that other people judge, based on:

      1. How good the output image looks, and how much it looks like the original.
      2. How nice the text looks. Completely random gobbledigook is OK if you have a really clever compression scheme, but I also want to see answers that turn images into mutli-lingual poems, or something clever like that. Note that the author of the original solution decided to use only Chinese characters, since it looked nicer that way.
      3. Interesting code and clever algorithms are always good. I like short, to the point, and clear code, but really clever complicated algorithms are OK too as long as they produce good results.

    2. Speed is also important, though not as important as how good a job compressing the image you do. I'd rather have a program that can convert an image in a tenth of a second than something that will be running genetic algorithms for days on end.
    3. I will prefer shorter solutions to longer ones, as long as they are reasonably comparable in quality; conciseness is a virtue.
    4. Your program should be implemented in a language that has a freely-available implementation on Mac OS X, Linux, or Windows. I'd like to be able to run the programs, but if you have a great solution that only runs under MATLAB or something, that's fine.
    5. Your program should be as general as possible; it should work for as many different images as possible, though some may produce better results than others. In particular:

      1. Having a few images built into the program that it matches and writes a reference to, and then produces the matching image upon decoding, is fairly lame and will only cover a few images.
      2. A program that can take images of simple, flat, geometric shapes and decompose them into some vector primitive is pretty nifty, but if it fails on images beyond a certain complexity it is probably insufficiently general.
      3. A program that can only take images of a particular fixed aspect ratio but does a good job with them would also be OK, but not ideal.
      4. You may find that a black and white image can get more information into a smaller space than a color image. On the other hand, that may limit the types of image it's applicable to; faces come out fine in black and white, but abstract designs may not fare so well.
      5. It is perfectly fine if the output image is smaller than the input, while being roughly the same proportion. It's OK if you have to scale the image up to compare it to the original; what's important is how it looks.

    6. Your program should produce output that could actually go through Twitter and come out unscathed. This is only a guideline rather than a rule, since I couldn't find any documentation on the precise set of characters supported, but you should probably avoid control characters, funky invisible combining characters, private use characters, and the like.

    Scoring rubric

    As a general guide to how I will be ranking solutions when choosing my accepted solution, lets say that I'll probably be evaluating solutions on a 25 point scale (this is very rough, and I won't be scoring anything directly, just using this as a basic guideline):

    • 15 points for how well the encoding scheme reproduces a wide range of input images. This is a subjective, aesthetic judgement
      • 0 means that it doesn't work at all, it gives the same image back every time, or something
      • 5 means that it can encode a few images, though the decoded version looks ugly and it may not work at all on more complicated images
      • 10 means that it works on a wide range of images, and produces pleasant looking images which may occasionally be distinguishable
      • 15 means that it produces perfect replicas of some images, and even for larger and more complex images, gives something that is recognizable. Or, perhaps it does not make images that are quite recognizable, but produces beautiful images that are clearly derived from the original.
    • 3 points for clever use of the Unicode character set
      • 0 points for simply using the entire set of allowed characters
      • 1 point for using a limited set of characters that are safe for transfer over Twitter or in a wider variety of situations
      • 2 points for using a thematic subset of characters, such as only Han ideographs or only right-to-left characters
      • 3 points for doing something really neat, like generating readable text or using characters that look like the image in question
    • 3 points for clever algorithmic approaches and code style
      • 0 points for something that is 1000 lines of code only to scale the image down, treat it as 1 bit per pixel, and base64 encode that
      • 1 point for something that uses a standard encoding technique and is well written and brief
      • 2 points for something that introduces a relatively novel encoding technique, or that is surprisingly short and clean
      • 3 points for a one liner that actually produces good results, or something that breaks new ground in graphics encoding (if this seems like a low number of points for breaking new ground, remember that a result this good will likely have a high score for aesthetics as well)
    • 2 points for speed. All else being equal, faster is better, but the above criteria are all more important than speed
    • 1 point for running on free (open source) software, because I prefer free software (note that C# will still be eligible for this point as long as it runs on Mono, likewise MATLAB code would be eligible if it runs on GNU Octave)
    • 1 point for actually following all of the rules. These rules have gotten a bit big and complicated, so I'll probably accept otherwise good answers that get one small detail wrong, but I will give an extra point to any solution that does actually follow all of the rules

    Reference images

    Some folks have asked for some reference images. Here are a few reference images that you can try; smaller versions are embedded here, they all link to larger versions of the image if you need those:

    Prize

    I am offering a 500 rep bounty (plus the 50 that StackOverflow kicks in) for the solution that I like the best, based on the above criteria. Of course, I encourage everyone else to vote on their favorite solutions here as well.

    Note on deadline

    This contest will run until the bounty runs out, about 6 PM on Saturday, May 30. I can't say the precise time it will end; it may be anywhere from 5 to 7 PM. I will guarantee that I'll look at all entries submitted by 2 PM, and I will do my best to look at all entries submitted by 4 PM; if solutions are submitted after that, I may not have a chance to give them a fair look before I have to make my decision. Also, the earlier you submit, the more chance you will have for voting to be able to help me pick the best solution, so try and submit earlier rather than right at the deadline.

    Unicode notes

    There has also been some confusion on exactly what Unicode characters are allowed. The range of possible Unicode code points is U+0000 to U+10FFFF. There are some code points which are never valid to use as Unicode characters in any open interchange of data; these are the noncharacters and the surrogate code points. Noncharacters are defined in the Unidode Standard 5.1.0 section 16.7 as the values U+FFFE, U+FFFF, U+nFFFE, U+nFFFF where n is 110 hexadecimal, and the range U+FDD0U+FDEF. These values are intended to be used for application-specific internal usage, and conforming applications may strip these characters out of text processed by them. Surrogate code points, defined in the Unicode Standard 5.1.0 section 3.8 as U+D800U+DFFF, are used for encoding characters beyond the Basic Multilingual Plane in UTF-16; thus, it is impossible to represent these code points directly in the UTF-16 encoding, and it is invalid to encode them in any other encoding. Thus, for the purpose of this contest, I will allow any program which encodes images into a sequence of no more than 140 Unicode code points from the range U+0000U+10FFFF, excluding all noncharacters and surrogate pairs as defined above.

    I will prefer solutions that use only assigned characters, and even better ones that use clever subsets of assigned characters or do something interesting with the character set they use. For a list of assigned characters, see the Unicode Character Database; note that some characters are listed directly, while some are listed only as the start and end of a range. Also note that surrogate code points are listed in the database, but forbidden as mentioned above. If you would like to take advantage of certain properties of characters for making the text you output more interesting, there are a variety of databases of character information available, such as a list of named code blocks and various character properties.

    Since Twitter does not specify the exact character set they support, I will be lenient about solutions which do not actually work with Twitter because certain characters count extra or certain characters are stripped. It is preferred but not required that all encoded outputs should be able to be transferred unharmed via Twitter or another microblogging service such as identi.ca. I have seen some documentation stating that Twitter entity-encodes <, >, and &, and thus counts those as 4, 4, and 5 characters respectively, but I have not tested that out myself, and their JavaScript character counter doesn't seem to count them that way.

    Tips & Links

    • The definition of valid Unicode characters in the rules is a bit complicated. Choosing a single block of characters, such as CJK Unified Ideographs (U+4E00–U+9FCF) may be easier.
    • You may use existing image libraries, like ImageMagick or Python Imaging Library, for your image manipulation.
    • If you need some help understanding the Unicode character set and its various encodings, see this quick guide or this detailed FAQ on UTF-8 in Linux and Unix.
    • The earlier you get your solution in, the more time I (and other people voting) will have to look at it. You can edit your solution if you improve it; I'll base my bounty on the most recent version when I take my last look through the solutions.
    • If you want an easy image format to parse and write (and don't want to just use an existing format), I'd suggest using the PPM format. It's a text based format that's very easy to work with, and you can use ImageMagick to convert to and from it.

    解决方案

    Alright, here's mine: nanocrunch.cpp and the CMakeLists.txt file to build it using CMake. It relies on the Magick++ ImageMagick API for most of its image handling. It also requires the GMP library for bignum arithmetic for its string encoding.

    I based my solution off of fractal image compression, with a few unique twists. The basic idea is to take the image, scale down a copy to 50% and look for pieces in various orientations that look similar to non-overlapping blocks in the original image. It takes a very brute force approach to this search, but that just makes it easier to introduce my modifications.

    The first modification is that instead of just looking at ninety degree rotations and flips, my program also considers 45 degree orientations. It's one more bit per block, but it helps the image quality immensely.

    The other thing is that storing a contrast/brightness adjustment for each of color component of each block is way too expensive. Instead, I store a heavily quantized color (the palette has only 4 * 4 * 4 = 64 colors) that simply gets blended in in some proportion. Mathematically, this is equivalent to a variable brightness and constant contrast adjustment for each color. Unfortunately, it also means there's no negative contrast to flip the colors.

    Once it's computed the position, orientation and color for each block, it encodes this into a UTF-8 string. First, it generates a very large bignum to represent the data in the block table and the image size. The approach to this is similar to Sam Hocevar's solution -- kind of a large number with a radix that varies by position.

    Then it converts that into a base of whatever the size of the character set available is. By default, it makes full use of the assigned unicode character set, minus the less than, greater than, ampersand, control, combining, and surrogate and private characters. It's not pretty but it works. You can also comment out the default table and select printable 7-bit ASCII (again excluding <, >, and & characters) or CJK Unified Ideographs instead. The table of which character codes are available is stored a run-length encoded with alternating runs of invalid and valid characters.

    Anyway, here are some images and times (as measured on my old 3.0GHz P4), and compressed to 140 characters in the full assigned unicode set described above. Overall, I'm fairly pleased with how they all turned out. If I had more time to work on this, I'd probably try to reduce the blockiness of the decompressed images. Still, I think the results are pretty good for the extreme compression ratio. The decompressed images are bit impressionistic, but I find it relatively easy to see how bits correspond to the original.

    Stack Overflow Logo (8.6s to encode, 7.9s to decode, 485 bytes):
    http://i44.tinypic.com/2w7lok1.png

    Lena (32.8s to encode, 13.0s to decode, 477 bytes):
    http://i42.tinypic.com/2rr49wg.png http://i40.tinypic.com/2rhxxyu.png

    Mona Lisa (43.2s to encode, 14.5s to decode, 490 bytes):
    http://i41.tinypic.com/ekgwp3.png http://i43.tinypic.com/ngsxep.png

    Edit: CJK Unified Characters

    Sam asked in the comments about using this with CJK. Here's a version of the Mona Lisa compressed to 139 characters from the CJK Unified character set:

    http://i43.tinypic.com/2yxgdfk.png 咏璘驞凄脒鵚据蛥鸂拗朐朖辿韩瀦魷歪痫栘璯緍脲蕜抱揎頻蓼債鑡嗞靊寞柮嚛嚵籥聚隤慛絖銓馿渫櫰矍昀鰛掾撄粂敽牙稉擎蔍螎葙峬覧絀蹔抆惫冧笻哜搀澐芯譶辍澮垝黟偞媄童竽梀韠镰猳閺狌而羶喙伆杇婣唆鐤諽鷍鴞駫搶毤埙誖萜愿旖鞰萗勹鈱哳垬濅鬒秀瞛洆认気狋異闥籴珵仾氙熜謋繴茴晋髭杍嚖熥勳縿餅珝爸擸萿

    The tuning parameters at the top of the program that I used for this were: 19, 19, 4, 4, 3, 10, 11, 1000, 1000. I also commented out the first definition of number_assigned and codes, and uncommented out the last definitions of them to select the CJK Unified character set.

    这篇关于Twitter 图像编码挑战的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

  • 查看全文
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆