Opencv3 und Python 2.7 in einer virtuellen Umgebung - AttributeError: Das Objekt 'module' hat kein Attribut 'createLBPHFaceRecognizer'
Ich habe eine Python-Funktion mit opencv 3. Es funktioniert ohne virtuelle Umgebung.Auch ich habe opencv auf venv installiert von: pyimagesearch. Ich versuche, diese Python-Funktion auf venv auszuführen, dann gibt es einen Fehler:
AttributeError: 'module' object has no attribute 'createLBPHFaceRecognizer'
ohne venv im terminal:
gkhan@Gkan ~/Masaüstü/face_recognizer $ python face_recognizer.py
Yol :./sinif/114.jpg.
114 Yuz Tanindi 12
mit venv im terminal:
gkhan@Gkan ~/Masaüstü/face_recognizer $ workon cv
(cv)gkhan@Gkan ~/Masaüstü/face_recognizer $ python face_recognizer.py
Traceback (most recent call last):
File "face_recognizer.py", line 15, in <module>
recognizer = cv2.createLBPHFaceRecognizer()
AttributeError: 'module' object has no attribute 'createLBPHFaceRecognizer'
Mein Python-Code:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import cv2, os
import numpy as np
from PIL import Image
# For Test
if 0==0:
cascadePath = "haarcascade_frontalface_default.xml"
faceCascade = cv2.CascadeClassifier(cascadePath)
recognizer = cv2.createLBPHFaceRecognizer()
...
Ich starte Opencv3 mit Python 2.7 unter Linux Mint 64 Bit