├── .gitignore ├── README.md ├── logo.png └── photomosaic ├── main.py └── pythomosaic ├── Bucket.py ├── BucketsHandler.py ├── Element.py ├── ImageLoader.py ├── MosaicMakerStyle1.py ├── MosaicMakerStyle2.py ├── PostProcess.py ├── PreProcess.py ├── __init__.py ├── constants.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/logo.png -------------------------------------------------------------------------------- /photomosaic/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/photomosaic/main.py -------------------------------------------------------------------------------- /photomosaic/pythomosaic/Bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/photomosaic/pythomosaic/Bucket.py -------------------------------------------------------------------------------- /photomosaic/pythomosaic/BucketsHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/photomosaic/pythomosaic/BucketsHandler.py -------------------------------------------------------------------------------- /photomosaic/pythomosaic/Element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/photomosaic/pythomosaic/Element.py -------------------------------------------------------------------------------- /photomosaic/pythomosaic/ImageLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/photomosaic/pythomosaic/ImageLoader.py -------------------------------------------------------------------------------- /photomosaic/pythomosaic/MosaicMakerStyle1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/photomosaic/pythomosaic/MosaicMakerStyle1.py -------------------------------------------------------------------------------- /photomosaic/pythomosaic/MosaicMakerStyle2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/photomosaic/pythomosaic/MosaicMakerStyle2.py -------------------------------------------------------------------------------- /photomosaic/pythomosaic/PostProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/photomosaic/pythomosaic/PostProcess.py -------------------------------------------------------------------------------- /photomosaic/pythomosaic/PreProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/photomosaic/pythomosaic/PreProcess.py -------------------------------------------------------------------------------- /photomosaic/pythomosaic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/photomosaic/pythomosaic/__init__.py -------------------------------------------------------------------------------- /photomosaic/pythomosaic/constants.py: -------------------------------------------------------------------------------- 1 | DIST_MAX_COLOR_BUCKET = 20 2 | -------------------------------------------------------------------------------- /photomosaic/pythomosaic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoM25/Pythosaic/HEAD/photomosaic/pythomosaic/utils.py --------------------------------------------------------------------------------