1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# AutoDistortion
Distortion of images using randomly-generated functions.

This was generated using AutoDistortion from the following image ([Sourced from here](https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/OrteliusWorldMap1570.jpg/1280px-OrteliusWorldMap1570.jpg))

To run AutoDistortion on an image, download one of the [releases](https://github.com/pommicket/autodistortion/releases), and run the executable. You will be prompted for the name of the image file.
Only PNG and JPG images are supported so far.
## How it works
AutoDistortion works by randomly generating two functions, X(x, y) and Y(x, y), for example:
```
X(x, y) = 2x + 3y
Y(x, y) = sin(7y)
```
Then, the color of the pixel at (x, y) in the output image will be the color of the pixel at (X(x, y) modulo width, Y(x, y) modulo height) in the input image (where width and height are the dimensions of the input image).
To make sure that images at different resolutions are treated the same, AutoDistortion divides x and y by the width and height of the image respectively before doing this.
## Building AutoDistortion from source
To build AutoDistortion, simply run
```bash
go get github.com/pommicket/autodistortion
cd $GOPATH/github.com/pommicket/autodistortion
mkdir -p bin
go build -o bin/autodistortion
```
## Arguments
You can see a list of command line arguments using
```bash
autodistortion -help
```
These include:
- `-in`, `-out` - Set the input and output files respectively
- `-seed` - Sets the seed for the random number generator (default to the time in nanoseconds). This is useful for distorting multiple images with the same distortion.
- `-threads` - Sets the number of threads to use (defaults to 64)
## License
AutoDistortion is licensed under the [GNU General Public License, Version 3](https://www.gnu.org/licenses/gpl-3.0.html).
|