forked from smaranjitghose/ArtCV
-
Notifications
You must be signed in to change notification settings - Fork 1
/
water_coloring.py
35 lines (31 loc) · 1.49 KB
/
water_coloring.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Import the dependencies
import cv2
import argparse
from tqdm import tqdm as tqdm
# construct the argument parse and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--image", required=True, help="path to input image")
args = vars(ap.parse_args())
# reading the image
img = cv2.imread((args["image"]))
for j in tqdm(range(1,10),desc = 'Generating'):
water_color_img = cv2.stylization(img, sigma_s = 60,sigma_r = 0.6)
# The smoothing filter replaces the value of a pixel by the weighted sum of its neighbors
# The bigger the neighbourhood, the smoother the image becomes
# The parameter signma_s(Sigma_Spatial) is used for controlling the size of the neighbourhood.
# It's value are from 1-200
# At times it is not possible to replace the color of a pixel by the weighted sum of its neighbors.
# Rather color value at a pixel is repaced by the average of pixels in the neighborhood which also have color similar to the pixel.
# The parameter sigma_r(Sigma_Range) is used for controlling the averaging of dissimilar colors within the neighbourhood.
# It's value range from 0 to 1
# A larger value of sigma_r results in large regions of constant color.
#create Window to display images
cv2.imshow('Water Coloring', water_color_img)
# Input keypress
k = cv2.waitKey(0)
# If Esc key is pressed
if k == 27 or k == ord('q'):
# Save the image in the desired path
cv2.imwrite('assets/water_coloring.jpg', water_color_img)
#close all the opened windows
cv2.destroyAllWindows()