Interesting concept of generating every image possible
webdevrefinery.com
Interesting concept of generating every image possible
1–9 of 9 posts
Re: Interesting concept of generating every image possible
#2Re: Interesting concept of generating every image possible
#3Quoting from the Wikipedia description: "Despite — indeed, because of — this glut of information, all books are totally useless to the reader, leaving the librarians in a state of suicidal despair."
Re: Interesting concept of generating every image possible
#4Re: Interesting concept of generating every image possible
#5Re: Interesting concept of generating every image possible
#6Re: Interesting concept of generating every image possible
#7Obviously this guy and his readers know nothing about math. Th number of possible images (400 by 400 with 24-bit color) is in fact 16,777,216^(400*400), which is an outrageously huge number. You can reduce this slightly by accounting for symmetry.
Re: Interesting concept of generating every image possible
#8Obviously this guy and his readers know nothing about math. Th number of possible images (400 by 400 with 24-bit color) is in fact 16,777,216^(400*400), which is an outrageously huge number. You can reduce this slightly by accounting for symmetry.
I'm specifically suggesting JPEG because it is a compression method based on human perception, so if we focus only on easily JPEG compressed images, we should eliminate a lot of the image that look like snow on a TV, and restrict more to images that look vaguely like something.
Unfortunately, I don't remember enough details of how JPEG compression works to make a reasonable guess how many possible JPEGs this is, and whether we are getting into numbers small enough to be feasible.
Re: Interesting concept of generating every image possible
#9Obviously this guy and his readers know nothing about math. Th number of possible images (400 by 400 with 24-bit color) is in fact 16,777,216^(400*400), which is an outrageously huge number. You can reduce this slightly by accounting for symmetry.
I wonder if this would be explorable for some much tinier subset of the space of images. Like maybe 32 x 32 greyscale JPEG images with some limit on compressed size that keeps it to interesting images. I'm specifically suggesting JPEG because it is a compression method based on human perception, so if we focus only on easily JPEG compressed images, we should eliminate a lot of the image that look like snow on a TV, a…
Now, I have no idea how much of that is the header. So, to help guess that, I saved a solid white 32px image with the same settings, and it was 164 bytes.
Worst case, generating every possible 427 byte file at one hundred per second, would take ~ 4.8×10^1008 × universe age (per http://www.wolframalpha.com/input/?i=2^%28427*8%29+%2F+100+p...)
Even if we figure all 164 bytes of the white file is header info, that leaves 263 bytes of image data in the face image, which would take ~ 5.4×10^613 × universe age. (Per http://www.wolframalpha.com/input/?i=2^%28263*8%29+%2F+100+p...)
If we got down to an 8 by 8 pixel black and white image, and generating 1 billion per second, it would still take 6 centuries. (per http://www.wolframalpha.com/input/?i=2^%288*8%29+%2F+1000000...)
So even a massively reduced version of the problem is still ridiculously impossible to explore.