T
T
tyilamg2020-06-01 17:57:37
Python
tyilamg, 2020-06-01 17:57:37

File path error?

Hello. I can't figure out what this error wants from me? As I understand it, he does not like the path of the file or its contents.

import cv2
import numpy as np
from PIL import Image
import os

# Path for face image database
path = "dataset"

recognizer = cv2.face.LBPHFaceRecognizer_create()
detector = cv2.CascadeClassifier("haarcascade_frontalface_default.xml");

# function to get the images and label data
def getImagesAndLabels(path):

    imagePaths = [os.path.join(path,f) for f in os.listdir(path)]     
    faceSamples=[]
    ids = []

    for imagePath in imagePaths:

        PIL_img = Image.open(imagePath).convert('L') # convert it to grayscale
        img_numpy = np.array(PIL_img,'uint8')

        id = int(os.path.split(imagePath)[-1].split(".")[1])
        faces = detector.detectMultiScale(img_numpy)

        for (x,y,w,h) in faces:
            faceSamples.append(img_numpy[y:y+h,x:x+w])
            ids.append(id)

    return faceSamples,ids

print ("\n [INFO] Training faces. It will take a few seconds. Wait ...")
faces,ids = getImagesAndLabels(path)
recognizer.train(faces, np.array(ids))

# Save the model into trainer/trainer.yml
recognizer.write('trainer/trainer.yml') # recognizer.save() worked on Mac, but not on Pi

# Print the numer of faces trained and end program
print("\n [INFO] {0} faces trained. Exiting Program".format(len(np.unique(ids))))


5ed51753a6e05726195398.png5ed517592406a508229295.png5ed5175b44b2f334582525.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
G
galaxy, 2020-06-01
@tyilamg

os.path.split(imagePath)[-1].split(".")[1]- empty string (you have two dots in the file name), will not convert to int

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question