Experiment to get the Best values for the - cv2.getStructuringElement(cv2.MORPH_RECT,
Current plan - get the HSV values for a Number Plate Image.
HSV - VALUE , HUE , SATURATION
Get the AVERAGE - Value , Hue and Saturation
Do the - morphing transforms on the MASKS
open_kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (9,9)) #_9,9___BEST____ TODO # 7,7 -- better | 5,5 -- bad
close_kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (7,7)) #_7,7__BEST_____ TODO # 5,5 -- better | 3,3 -- bad
cv2.getStructuringElement(cv2.MORPH_RECT
cv2.morphologyEx(
https://opencv24-python-tutorials.readthedocs.io/en/latest/py_tutorials/py_imgproc/py_morphological_ops/py_morphological_ops.html
https://stackoverflow.com/questions/72739316/plotting-hsv-channel-histograms-from-a-bgr-image-opencv
current code snippets as below