Script load_display_save.py will open a png file and convert it to a jpg. To run it, use the command:
python load_display_save.py --image IMAGE
Script gettings_and_setting.py will open an image, print out the RGB values of the top left pixel, make the top left pixel red, crop out everything except the top left 100x100 pixels, and make the cropped pixels green. To run it, use the command:
python getting_and_setting.py --image IMAGE
Script drawing.py will show multiple drawings using cv2 lines, rectangles, and circles. To run it, use the command:
python drawing.py
Various simple image modification scripts. To run them, use the command:
python SCRIPTNAME --image IMAGE
bitwise.py does not use the --image argument.
imutils.py is required for translate.py, rotate.py, & resize.py.
Histograms and image equalization scripts. To run them, use the command:
python SCRIPTNAME --image IMAGE
3d_histogram.py uses optional arguments for size(--size) and bins(--bins)
Script blurring.py will blur an image in various ways.
python SCRIPTNAME --image IMAGE
A variety of thresholding methods. To run them, use the command:
python SCRIPTNAME --image IMAGE
Two edge detection scripts. To run them, use the command:
python SCRIPTNAME --image IMAGE