My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
MartianMessagesDecrypted  
Updated Jul 19, 2007 by iruss...@gmail.com

Objects in space:

Original:

Reconstructed:

Code:

x = 0

while x < (image.columns-28-14)

  y = 0
  while y < (image.rows-28-14)  
    
    
    block = image.crop(x,y, 56,56).resize(28,28)

    target = target.store_pixels(x+14, y+14, 28, 28, block.get_pixels(0,0,28,28))


    y += 28
  end

  x += 28
end

Sign in to add a comment
Powered by Google Project Hosting