Face Clustering of Images

Notice: Page may contain affiliate links for which we may earn a small commission through services like Amazon Affiliates or Skimlinks.

samjm

New Member
Jun 14, 2020
1
0
1
import sys
import os
import dlib
import glob
import time

start = time.time()

if len(sys.argv) != 3:
print("Please specify valid arguments. Call the program like this \npython face_clustering.py -specify input folder- -specify output path-")
exit()

predictor_path = 'shape_predictor_5_face_landmarks.dat'
face_rec_model_path = 'dlib_face_recognition_resnet_model_v1.dat'
faces_folder_path = sys.argv[1]
output_folder = sys.argv[2]

detector = dlib.get_frontal_face_detector() #a detector to find the faces
sp = dlib.shape_predictor(predictor_path) #shape predictor to find face landmarks
facerec = dlib.face_recognition_model_v1(face_rec_model_path) #face recognition model

descriptors = []
images = []

# Load the images from input folder
for f in glob.glob(os.path.join(faces_folder_path, "*.jpg")):
print("Processing file: {}".format(f))
img = dlib.load_rgb_image(f)


# Ask the detector to find the bounding boxes of each face. The 1 in the second argument indicates that we should upsample the image 1 time. This will make everything bigger and allow us to detect more faces.

dets = detector(img, 1)
print("Number of faces detected: {}".format(len(dets)))

# Now process each face we found.
for k, d in enumerate(dets):
# Get the landmarks/parts for the face in box d.
shape = sp(img, d)

# Compute the 128D vector that describes the face in img identified by shape.
face_descriptor = facerec.compute_face_descriptor(img, shape)
descriptors.append(face_descriptor)
images.append((img, shape))

# Cluster the faces.
labels = dlib.chinese_whispers_clustering(descriptors, 0.5)
num_classes = len(set(labels)) # Total number of clusters
print("Number of clusters: {}".format(num_classes))

for i in range(0, num_classes):
indices = []
class_length = len([label for label in labels if label == i])
for j, label in enumerate(labels):
if label == i:
indices.append(j)
print("Indices of images in the cluster {0} : {1}".format(str(i),str(indices)))
print("Size of cluster {0} : {1}".format(str(i),str(class_length)))
output_folder_path = output_folder + '/output' + str(i) # Output folder for each cluster
os.path.normpath(output_folder_path)
os.makedirs(output_folder_path)

# Save each face to the respective cluster folder
print("Saving faces to output folder...")
for k, index in enumerate(indices):
img, shape = images[index]
x = img
file_path = os.path.join(output_folder_path,"face_"+str(k)+"_"+str(i))
dlib.save_face_chip(img, shape, file_path, size=150, padding=0.25)

print("--- %s seconds ---" % (time.time() - start))


I used this but it shows cropped image of a person due to dlib.save_face_chip function. How to make it such that whole image containing 2 or3 persons are stored in their own clusters folder? I mean same full image is stored in all these folders instead of cropped image.