|
MartianMessagesDecrypted
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