├── .gitignore ├── LICENSE ├── README.md ├── Requirements.txt ├── crossing.py ├── gen0.py ├── main.py ├── saveimage.py ├── select0.txt ├── ui_select.py └── ui_show.py /.gitignore: -------------------------------------------------------------------------------- 1 | *png 2 | __pycache__/ 3 | *.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanaka100/Image_Genetic_algorithm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanaka100/Image_Genetic_algorithm/HEAD/README.md -------------------------------------------------------------------------------- /Requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanaka100/Image_Genetic_algorithm/HEAD/Requirements.txt -------------------------------------------------------------------------------- /crossing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanaka100/Image_Genetic_algorithm/HEAD/crossing.py -------------------------------------------------------------------------------- /gen0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanaka100/Image_Genetic_algorithm/HEAD/gen0.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanaka100/Image_Genetic_algorithm/HEAD/main.py -------------------------------------------------------------------------------- /saveimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanaka100/Image_Genetic_algorithm/HEAD/saveimage.py -------------------------------------------------------------------------------- /select0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanaka100/Image_Genetic_algorithm/HEAD/select0.txt -------------------------------------------------------------------------------- /ui_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanaka100/Image_Genetic_algorithm/HEAD/ui_select.py -------------------------------------------------------------------------------- /ui_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanaka100/Image_Genetic_algorithm/HEAD/ui_show.py --------------------------------------------------------------------------------