From 97cb7331e768cd8cce41e6b164fb4b0ff7915939 Mon Sep 17 00:00:00 2001 From: Abdul Qoyyuum Date: Tue, 9 Nov 2021 06:43:52 +0800 Subject: Dead link (#4264) It was a dead link and doesn't seem to be active anymore. --- opencv.html.markdown | 1 - 1 file changed, 1 deletion(-) (limited to 'opencv.html.markdown') diff --git a/opencv.html.markdown b/opencv.html.markdown index d1f7ec51..5d860eca 100644 --- a/opencv.html.markdown +++ b/opencv.html.markdown @@ -138,7 +138,6 @@ cv2.destroyAllWindows() * An up-to-date language reference can be found at [https://opencv.org](https://opencv.org) * Additional resources may be found at [https://en.wikipedia.org/wiki/OpenCV](https://en.wikipedia.org/wiki/OpenCV) * Good OpenCv Tutorials - * [https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.html](https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.html) * [https://realpython.com/python-opencv-color-spaces](https://realpython.com/python-opencv-color-spaces) * [https://pyimagesearch.com](https://pyimagesearch.com) * [https://www.learnopencv.com](https://www.learnopencv.com) -- cgit v1.2.3 From ffdc6fb5aa2e28a2c85514494e0ac798df6a85b7 Mon Sep 17 00:00:00 2001 From: Abban Fahim <67863502+Abban-Fahim@users.noreply.github.com> Date: Sun, 12 Nov 2023 11:38:41 +0400 Subject: Fixed spelling error and added comments --- opencv.html.markdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'opencv.html.markdown') diff --git a/opencv.html.markdown b/opencv.html.markdown index 5d860eca..b083feb8 100644 --- a/opencv.html.markdown +++ b/opencv.html.markdown @@ -114,13 +114,15 @@ eye_cascade = cv2.CascadeClassifier('haarcascade_eye.xml') img = cv2.imread('human.jpg') gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) -aces = face_cascade.detectMultiScale(gray, 1.3, 5) +faces = face_cascade.detectMultiScale(gray, 1.3, 5) for (x,y,w,h) in faces: + # Draw a rectangle around detected face cv2.rectangle(img,(x,y),(x+w,y+h),(255,0,0),2) roi_gray = gray[y:y+h, x:x+w] roi_color = img[y:y+h, x:x+w] eyes = eye_cascade.detectMultiScale(roi_gray) for (ex,ey,ew,eh) in eyes: + # Draw a rectangle around detected eyes cv2.rectangle(roi_color,(ex,ey),(ex+ew,ey+eh),(0,255,0),2) cv2.imshow('img',img) -- cgit v1.2.3