Script | Description | Special Thanks | Note |
---|---|---|---|
PNG_to_JPEG.py | An easy approach to convert the PNG images to JPEG file format. | ChatGPT & abhilb from Stack Overflow (Question link) |
Make sure to install the necessary files for PIL (for image manipulation). |
image_upscaling.py | An easy approach to Upscale any image. | ChatGPT | Make sure to install the necessary files for cv2(for image upscaling). |
batch_image_upscaling.py | An easy approach to Upscale in batch. | ChatGPT | Make sure to install the necessary files for cv2(for image upscaling). |
upscaled_jpg_rename.py | An easy approach to combine upscaling, converting to JPEG and renaming the file. | ChatGPT | Make sure to install the necessary files for cv2(for image upscaling). |
image_histogram_equalization.py | An easy approach to enhance the contrast of images. | ChatGPT | Make sure to install the necessary files for cv2(for image manipulation). |
image_color_manipulation.py | An easy approach to convert to grayscale, sepia tone, or adjusting brightness/contrast. | ChatGPT | Make sure to install the necessary files for cv2 (for image manipulation) & numpy (for sepia filter transformation). |
image_noise_reduction.py | An easy approach to reducing noise in images. | ChatGPT | Make sure to install the necessary files for cv2(for image manipulation). |