Photo mosaic software using EasyBMP. Rearrange several images on grid to express target image. The only constraint is output image will be black and white. Cell images are resources to express each grid of mosaic photo. Target image is our goal. Programming language is C++.
Method 1
Conserve original target image. Change pixel's value from cell image to target image. However, this method don't need many cell images, each cell lose their original feeling.
Method 2
Made a new photo by mixing cell images. For all each cell, average lightness of cell image is equal to target's one. This one need very many cell images for high resolution of output photo.
[Link]