├── .gitignore ├── Makefile ├── README.md ├── bin ├── image_score.py ├── lkh.sh ├── reconstruct_image.py └── shuffle_image.py ├── images ├── nayuki │ └── .gitignore ├── original │ └── .gitignore ├── reconstructed │ └── .gitignore └── shuffled │ └── .gitignore ├── nayuki └── .gitignore ├── src └── compute_scores.c └── tsp ├── instances └── .gitignore └── tours └── .gitignore /.gitignore: -------------------------------------------------------------------------------- 1 | *.dSYM 2 | *.class 3 | 4 | /LKH-2.0.7 5 | 6 | bin/compute_scores 7 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinhouston/image-unshredding/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinhouston/image-unshredding/HEAD/README.md -------------------------------------------------------------------------------- /bin/image_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinhouston/image-unshredding/HEAD/bin/image_score.py -------------------------------------------------------------------------------- /bin/lkh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinhouston/image-unshredding/HEAD/bin/lkh.sh -------------------------------------------------------------------------------- /bin/reconstruct_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinhouston/image-unshredding/HEAD/bin/reconstruct_image.py -------------------------------------------------------------------------------- /bin/shuffle_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinhouston/image-unshredding/HEAD/bin/shuffle_image.py -------------------------------------------------------------------------------- /images/nayuki/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /images/original/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /images/reconstructed/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /images/shuffled/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /nayuki/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /src/compute_scores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinhouston/image-unshredding/HEAD/src/compute_scores.c -------------------------------------------------------------------------------- /tsp/instances/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /tsp/tours/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | --------------------------------------------------------------------------------