diff --git a/README.md b/README.md index 4c794a2..6b042ff 100644 --- a/README.md +++ b/README.md @@ -131,6 +131,13 @@ Thanks a lot for spending your time helping! Keep rocking 🍻 + + + AFZL210 +
+ Mohd Afzal Khan +
+ kriptonian1 @@ -165,15 +172,15 @@ Thanks a lot for spending your time helping! Keep rocking 🍻
Vedant Jolly
- + + Dishant10
Dishant Nagpal
- - + SiddheshKukade @@ -208,15 +215,15 @@ Thanks a lot for spending your time helping! Keep rocking 🍻
Srinjoy Pati
- + + accodes21
Aarya Chopkar
- - + akashJainAJ11 @@ -251,15 +258,15 @@ Thanks a lot for spending your time helping! Keep rocking 🍻
Nafis Adnan Mondal
- + + devtayade
Null
- - + yashbrid03 @@ -294,7 +301,8 @@ Thanks a lot for spending your time helping! Keep rocking 🍻
Sameer Sahu
- + + NishantPacharne diff --git a/scripts/OpenCV GrayImage/main.py b/scripts/OpenCV GrayImage/main.py new file mode 100644 index 0000000..7ee97e3 --- /dev/null +++ b/scripts/OpenCV GrayImage/main.py @@ -0,0 +1,13 @@ +import cv2 + +cap = cv2.VideoCapture(0) + +while True: + success, img = cap.read() + + blurImage = cv.GaussianBlur(img,(5,5),0) + grayImg = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY) + cv2.imshow("Grayimage", grayImg) + cv2.imshow("Blur", blurImage) + cv2.imshow("image",img) + cv2.waitKey(10) diff --git a/scripts/OpenCV GrayImage/readme.md b/scripts/OpenCV GrayImage/readme.md new file mode 100644 index 0000000..01facf9 --- /dev/null +++ b/scripts/OpenCV GrayImage/readme.md @@ -0,0 +1,17 @@ + +## Run Locally + +Clone the project + +Install dependencies + +```bash + pip install opencv-python +``` + +Run the main.py file + +```bash + python main.py +``` +