This commit is contained in:
lasershottt 2024-07-19 23:39:15 +02:00
parent e567532aba
commit 119637db46
3 changed files with 5 additions and 2 deletions

View File

@ -3,4 +3,7 @@
## How to use ## How to use
- put your target image into the root folder - put your target image into the root folder
- install requirements using ```pip install -r requirements.txt``` - install requirements using ```pip install -r requirements.txt```
- run ```python main.py``` - run ```python main.py```
## Bug where it doesnt continue
- press space

BIN
allPictures.pkl Normal file

Binary file not shown.

View File

@ -83,7 +83,7 @@ if __name__ == '__main__':
### Starting sequence ### ### Starting sequence ###
target_path = input('Input relative path for target image: ') target_path = input('Input relative path for target image: ')
Image.open(target_path) Image.open(target_path)
print('For best results put segments at same value')
user_input = input('Input segment width count (Higher=more pictures used. Default = 100. Musn\'t exceed pixel of original): ') user_input = input('Input segment width count (Higher=more pictures used. Default = 100. Musn\'t exceed pixel of original): ')
try: try:
width_segments_count = int(user_input) width_segments_count = int(user_input)