>>10609080
>>10605140
This has the command you want. The –process_type flag only exists because I assume the 20% thing won't work forever, the toughest part is getting the full path to the image.
In windows it should look something like c:\full\path\to\image.png on linux it looks like /full/path/to/image.png
Step by Step for Windows
Install python3 make sure you install pip as well, it comes with it, just don't uncheck any of the options
https://techdator.net/install-python-windows-10/
Verify pip is installed by opening a command prompt and typing 'pip -v' a version number should come up, if it says pip isn't found reinstall python3 and make sure you got the pip option selected.
Once pip is working, type
pip install PIL
pip will download and install PIL
Now create a folder that is empty anywhere, this is the working directory, name it anything. Take note of the full path where you create this directory.
Inside the empty folder create a text file and put the contents of https://pastebin.com/JJ8PhPNb into it, save the file as main.py
Open your command prompt again, or reuse the one you used to test pip navigate to the directory you create and put main.py into. The command for this is
cd c:\full\path\to\directory\you\created
run the script by typing
python3 .\main.py --process_type=20 --input_file=c:\full\path\to\image.png
The processed image will appear in the working directory you created with main.py in it.