opencv haar文件返回太多面部特征

时间:2017-11-24 07:23:34

标签: python opencv opencv3.0 haar-classifier

我正在尝试检测Elon Musks的面部特征。现在它有点能够,但我检测到太多的眼睛,鼻子和嘴巴功能。我不知道如何解决这个问题只能找到一套。

我正在使用opencv' s github提供的haar文件,而且我在网上找到了一些haar文件。

haarcascade_frontalface_default.xml
haarcascade_eye.xml

haar files

class Filterize(object):
    def __init__(self, filterpath):
        self.filterpath = filterpath
        self.haarpath = os.path.join(os.getcwd(), 'haar')
        self.face_cascade = cv2.CascadeClassifier(os.path.join(self.haarpath, 'face.xml'))
        self.eye_cascade = cv2.CascadeClassifier(os.path.join(self.haarpath, 'eye.xml'))
        self.nose_cascade = cv2.CascadeClassifier(os.path.join(self.haarpath, 'nose.xml'))
        self.mouth_cascade = cv2.CascadeClassifier(os.path.join(self.haarpath, 'mouth.xml'))

    def get_filter_facial_features(self):
        filter = cv2.imread(self.filterpath)
        grayscale_filter = cv2.cvtColor(filter, cv2.COLOR_BGR2GRAY)
        face = self.face_cascade.detectMultiScale(grayscale_filter, 1.3, 5)
        for x, y, w, h in face:
            cv2.rectangle(filter, (x, y), (x + w, y + h), (255, 0, 0), 2)
            roi_gray = grayscale_filter[y:y + h, x:x + w]
            roi_color = filter[y:y + h, x:x + w]
            eyes = self.eye_cascade.detectMultiScale(roi_gray, 1.3, 5)
            nose = self.nose_cascade.detectMultiScale(roi_gray, 1.3, 5)
            mouth = self.mouth_cascade.detectMultiScale(roi_gray, 1.3, 5)
            for eye_x, eye_y, eye_w, eye_h in eyes:
                cv2.rectangle(roi_color, (eye_x, eye_y), (eye_x + eye_w, eye_y + eye_h), (0, 255, 0), 2)
            for nose_x, nose_y, nose_w, nose_h in nose:
                cv2.rectangle(roi_color, (nose_x, nose_y), (nose_x + nose_w, nose_y + nose_h), (0, 255, 0), 2)
            for mouth_x, mouth_y, mouth_w, mouth_h in mouth:
                cv2.rectangle(roi_color, (mouth_x, mouth_y), (mouth_x + mouth_w, mouth_y + mouth_h), (0, 255, 0), 2)
            cv2.imwrite('face.png', filter)

创建照片:

a = Filterize(filterpath)
a.get_filter_facial_features()

enter image description here

1 个答案:

答案 0 :(得分:1)

在这一行:

face = self.face_cascade.detectMultiScale(grayscale_filter, 1.3, 5)

您传递了以下可用参数(取自the docs):

  

参数:

     
      
  • cascade - Haar分类器级联(仅限OpenCV 1.x API)。它可以使用Load()从XML或YAML文件加载。当级联不是
    时   需要了,用它释放它   cvReleaseHaarClassifierCascade(安培;级联)。
  •   
  • image - 包含检测到对象的图像的CV_8U类型的矩阵。对象 - 每个矩形的向量   rectangle包含检测到的对象。
  •   
  • scaleFactor - 指定在每个图像比例下图像尺寸减少多少的参数。
  •   
  • minNeighbors - 参数指定每个候选矩形应保留多少个邻居。

  •   
  • flags - 与函数cvHaarDetectObjects中的旧级联具有相同含义的参数。它不用于新的级联。

  •   
  • minSize - 最小可能的对象大小。小于该值的对象将被忽略。

  •   
  • maxSize - 可能的最大对象大小。大于该值的对象将被忽略。
  •   

此功能的作用是检测具有已定义边界的所有功能。我建议你需要使用这些值,直到矩形的数量达到可接受的数量。

事实上,maxSize看起来是一个好的开始,因为每次检测都有较小的矩形