Skip to content

Commit 914804f

Browse files
Update ImgEnhancing.py
1 parent aed45f4 commit 914804f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Image Processing/ImgEnhancing.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
import cv2
55

66
#read the image
7-
img = cv2.imread('Desktop/Pictures/default.jpg') #Read the img from its location relative to py file
7+
#Read the img from its location relative to py file
8+
filePath=input("Enter the path of your Image : ")
9+
img = cv2.imread(filePath)
810

911
#preparation for CLAHE
1012
clahe= cv2.createCLAHE()

0 commit comments

Comments
 (0)