Giter VIP home page Giter VIP logo

Comments (6)

Crankb avatar Crankb commented on June 16, 2024 3

Try adding 'cascades/' before the xml
faceCascade = cv2.CascadeClassifier("cascades/haarcascade_smile.xml")
print(cv2.CascadeClassifier.empty(faceCascade))

from facedetect.

danielrojas08 avatar danielrojas08 commented on June 16, 2024

I have the same problem
Please Help Me
I'm just starting in this field of development, and I'm new to this type of code

from facedetect.

daveashu avatar daveashu commented on June 16, 2024

hope you have resolved your issue by now, if not i had same issue.
it's real classic and feels very strange too.
you need to make sure that you are loading the correct haar-classifier file.
to check that i ran below code and realized that it wasn't getting loaded.

faceCascade = cv2.CascadeClassifier(cv2.data.haarcascades + "haarcascade_smile.xml")
print(cv2.CascadeClassifier.empty(faceCascade) )

so you need to give correct location of the file. if print statement returns 'False' you good if not then there is something wrong with your path which classifier cannot find while loading.

hope this helps

from facedetect.

kamuridesu avatar kamuridesu commented on June 16, 2024

hope you have resolved your issue by now, if not i had same issue.
it's real classic and feels very strange too.
you need to make sure that you are loading the correct haar-classifier file.
to check that i ran below code and realized that it wasn't getting loaded.

faceCascade = cv2.CascadeClassifier(cv2.data.haarcascades + "haarcascade_smile.xml")
print(cv2.CascadeClassifier.empty(faceCascade) )

so you need to give correct location of the file. if print statement returns 'False' you good if not then there is something wrong with your path which classifier cannot find while loading.

hope this helps

even when its return 'True', still giving the same error 😭

from facedetect.

Karan-Ghatt avatar Karan-Ghatt commented on June 16, 2024

I seem to be facing the same issue, the print statement returns false but I still keep running into the following error:

faces = faceCascade.detectMultiScale(
cv2.error: OpenCV(4.2.0) C:\projects\opencv-python\opencv\modules\objdetect\src\cascadedetect.cpp:1689: error: (-215:Assertion failed) !empty() in function 'cv::CascadeClassifier::detectMultiScale'

Any insight would be greatly appreciated!

from facedetect.

Isha-kumar avatar Isha-kumar commented on June 16, 2024

I am facing the same issue recently, I am new to this working on eye detection can anyone help me with this?
i am using opencv 4.7.0 version

Code:
eyes_cascade = cv2.CascadeClassifier('cascades/haarcascade_eye.xml')
RGB_frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
try:
eyes = eyes_cascade.detectMultiScale(RGB_frame,scaleFactor=1.1, minNeighbors=5, minSize=(30, 30))
except Exception as e:
print(f"Error in detectMultiScale: {e}")
Error:
Error in detectMultiScale: OpenCV(4.7.0) D:\a\opencv-python\opencv-python\opencv\modules\objdetect\src\cascadedetect.cpp:1689: error: (-215:Assertion failed) !empty() in function 'cv::CascadeClassifier::detectMultiScale'

I have even checked for verification of xml file print statement is returning true
faceCascade = cv2.CascadeClassifier("cascades/haarcascade_eye.xml")
print(cv2.CascadeClassifier.empty(faceCascade))

from facedetect.

Related Issues (18)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.