├── Align Images ├── README.md └── imageAlignmentTool.py ├── Compare Folders ├── README.md └── compareFolders.py ├── Dataset Destroyer ├── README.md ├── config.ini ├── datasetDestroyer.py └── requirements.txt ├── De-dupe Images ├── ImageDeDupe.py └── README.md ├── Directory Tree Maker ├── README.md ├── directory_tree.py └── requirements.txt ├── Extract Video Frames ├── README.md └── VideoFrameExtract.py ├── Find Alpha Images ├── README.md └── findAlphaImages.py ├── Find Misaligned Images ├── README.md ├── findMisalignedImages.py └── requirements.txt ├── Hue Adjustment ├── README.md ├── hue_adjustment.py └── requirements.txt ├── ICC to sRGB ├── README.md ├── icc_to_srgb.py └── requirements.txt ├── Image Tiling ├── README.md ├── TileImages.py └── WTP Image Tiling │ ├── config.json │ ├── readme.md │ ├── requirements.txt │ ├── src │ ├── __init__.py │ ├── process.py │ └── tile_scripts │ │ ├── __init__.py │ │ ├── tiles_scripts.py │ │ └── utils.py │ └── tiling.py ├── LICENSE ├── Move Files ├── README.md ├── moveFiles.py └── requirements.txt ├── README.md ├── Re-Save Images ├── README.md └── resaveImages.py ├── Upscale Script ├── Kim2091_Upscale_Images.ipynb ├── README.md ├── config.ini ├── requirements.txt └── upscale-script.py ├── Verify Images ├── README.md ├── requirements.txt └── verifyImages.py └── Video Frame Extractor ├── README.md └── vidpair.py /Align Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Align Images/README.md -------------------------------------------------------------------------------- /Align Images/imageAlignmentTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Align Images/imageAlignmentTool.py -------------------------------------------------------------------------------- /Compare Folders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Compare Folders/README.md -------------------------------------------------------------------------------- /Compare Folders/compareFolders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Compare Folders/compareFolders.py -------------------------------------------------------------------------------- /Dataset Destroyer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Dataset Destroyer/README.md -------------------------------------------------------------------------------- /Dataset Destroyer/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Dataset Destroyer/config.ini -------------------------------------------------------------------------------- /Dataset Destroyer/datasetDestroyer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Dataset Destroyer/datasetDestroyer.py -------------------------------------------------------------------------------- /Dataset Destroyer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Dataset Destroyer/requirements.txt -------------------------------------------------------------------------------- /De-dupe Images/ImageDeDupe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/De-dupe Images/ImageDeDupe.py -------------------------------------------------------------------------------- /De-dupe Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/De-dupe Images/README.md -------------------------------------------------------------------------------- /Directory Tree Maker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Directory Tree Maker/README.md -------------------------------------------------------------------------------- /Directory Tree Maker/directory_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Directory Tree Maker/directory_tree.py -------------------------------------------------------------------------------- /Directory Tree Maker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Directory Tree Maker/requirements.txt -------------------------------------------------------------------------------- /Extract Video Frames/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Extract Video Frames/README.md -------------------------------------------------------------------------------- /Extract Video Frames/VideoFrameExtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Extract Video Frames/VideoFrameExtract.py -------------------------------------------------------------------------------- /Find Alpha Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Find Alpha Images/README.md -------------------------------------------------------------------------------- /Find Alpha Images/findAlphaImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Find Alpha Images/findAlphaImages.py -------------------------------------------------------------------------------- /Find Misaligned Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Find Misaligned Images/README.md -------------------------------------------------------------------------------- /Find Misaligned Images/findMisalignedImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Find Misaligned Images/findMisalignedImages.py -------------------------------------------------------------------------------- /Find Misaligned Images/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | numpy 3 | -------------------------------------------------------------------------------- /Hue Adjustment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Hue Adjustment/README.md -------------------------------------------------------------------------------- /Hue Adjustment/hue_adjustment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Hue Adjustment/hue_adjustment.py -------------------------------------------------------------------------------- /Hue Adjustment/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | numpy 3 | pillow 4 | -------------------------------------------------------------------------------- /ICC to sRGB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/ICC to sRGB/README.md -------------------------------------------------------------------------------- /ICC to sRGB/icc_to_srgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/ICC to sRGB/icc_to_srgb.py -------------------------------------------------------------------------------- /ICC to sRGB/requirements.txt: -------------------------------------------------------------------------------- 1 | pillow -------------------------------------------------------------------------------- /Image Tiling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Image Tiling/README.md -------------------------------------------------------------------------------- /Image Tiling/TileImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Image Tiling/TileImages.py -------------------------------------------------------------------------------- /Image Tiling/WTP Image Tiling/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Image Tiling/WTP Image Tiling/config.json -------------------------------------------------------------------------------- /Image Tiling/WTP Image Tiling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Image Tiling/WTP Image Tiling/readme.md -------------------------------------------------------------------------------- /Image Tiling/WTP Image Tiling/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Image Tiling/WTP Image Tiling/requirements.txt -------------------------------------------------------------------------------- /Image Tiling/WTP Image Tiling/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Image Tiling/WTP Image Tiling/src/__init__.py -------------------------------------------------------------------------------- /Image Tiling/WTP Image Tiling/src/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Image Tiling/WTP Image Tiling/src/process.py -------------------------------------------------------------------------------- /Image Tiling/WTP Image Tiling/src/tile_scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Image Tiling/WTP Image Tiling/src/tile_scripts/__init__.py -------------------------------------------------------------------------------- /Image Tiling/WTP Image Tiling/src/tile_scripts/tiles_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Image Tiling/WTP Image Tiling/src/tile_scripts/tiles_scripts.py -------------------------------------------------------------------------------- /Image Tiling/WTP Image Tiling/src/tile_scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Image Tiling/WTP Image Tiling/src/tile_scripts/utils.py -------------------------------------------------------------------------------- /Image Tiling/WTP Image Tiling/tiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Image Tiling/WTP Image Tiling/tiling.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Move Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Move Files/README.md -------------------------------------------------------------------------------- /Move Files/moveFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Move Files/moveFiles.py -------------------------------------------------------------------------------- /Move Files/requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/README.md -------------------------------------------------------------------------------- /Re-Save Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Re-Save Images/README.md -------------------------------------------------------------------------------- /Re-Save Images/resaveImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Re-Save Images/resaveImages.py -------------------------------------------------------------------------------- /Upscale Script/Kim2091_Upscale_Images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Upscale Script/Kim2091_Upscale_Images.ipynb -------------------------------------------------------------------------------- /Upscale Script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Upscale Script/README.md -------------------------------------------------------------------------------- /Upscale Script/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Upscale Script/config.ini -------------------------------------------------------------------------------- /Upscale Script/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Upscale Script/requirements.txt -------------------------------------------------------------------------------- /Upscale Script/upscale-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Upscale Script/upscale-script.py -------------------------------------------------------------------------------- /Verify Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Verify Images/README.md -------------------------------------------------------------------------------- /Verify Images/requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm 2 | pillow 3 | -------------------------------------------------------------------------------- /Verify Images/verifyImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Verify Images/verifyImages.py -------------------------------------------------------------------------------- /Video Frame Extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Video Frame Extractor/README.md -------------------------------------------------------------------------------- /Video Frame Extractor/vidpair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kim2091/helpful-scripts/HEAD/Video Frame Extractor/vidpair.py --------------------------------------------------------------------------------