You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ap.add_argument("-i", "--image", required = True, help = "Path to the image")
args = vars(ap.parse_args())
image = cv2.imread(args["image"])
cv2.imshow("Original", image)
# "image"
# "kernel" - diameter of our pixel neighborhood
# "color" - larger means that more colors in the neighborhood will be considered when computing the blur
# "space" - larger means that pixels farther out from the central pixel will influence the blurring calculation, provided that their colors are similar enough