1; comments start with semicolons
2
3; if we prepare images, they go into this directory by default:
4(prepare-directory "/home/hoschi/metapixels")
5; and we want them to be prepared at this size:
6(prepare-dimensions 80 80)
7
8; of course we want Metapixel to always use the images in our prepare
9; directory:
10(library-directory "/home/hoschi/metapixels")
11; by default we want our mosaic images a bit smaller:
12(small-image-dimensions 64 64)
13; we use the default weights, so the following line is commented out
14;(yiq-weights 1.0 1.0 1.0)
15; also we use the subpixel metric, which is the default
16;(metric subpixel)
17; we want the global search method, though
18(search-method global)
19; for all the other options, we use default values, so everything else
20; is commented out:
21;(minimum-classic-distance 5)
22;(minimum-collage-distance 256)
23;(cheat-amount 0)
24;(forbid-reconstruction-distance 0)
25