A library for face recognition in multiple images and classification of photos containing each individual.
Project description
Face Tagger
Face Tagger is a Python library designed to classify photos containing specific individuals from a collection of images.
Features
- Face Recognition: Identify and differentiate faces in multiple images.
- Photo Classification: Group photos based on the identified individual.
- GPU Acceleration: Optimized performance using GPU, if available.
- Easy Integration: Simple APIs for seamless integration into various applications.
Installation
To install Face Tagger, you can use pip:
pip install face-tagger
Dependencies
Face Tagger relies on several key libraries to function effectively. Understanding these dependencies can provide insights into the library's internal workings and can be beneficial for troubleshooting. Here are the primary dependencies:
- OpenCV (cv2): Used for image processing tasks like reading and preprocessing images.
- Torch (torch): The primary deep learning framework employed for face embedding.
- MTCNN: Essential for the detection of faces within images.
Make sure to have these dependencies properly installed or ensure they are present in your environment when working with Face Tagger. For a comprehensive list and exact versions, please refer to the requirements.txt
file.
How it Works
Face Tagger follows a systematic process to classify images:
-
Image Loading
- Uses standard Python libraries, typically OpenCV (
cv2
), to read and preprocess images.
- Uses standard Python libraries, typically OpenCV (
-
Face Detection
- Utilizes the MTCNN (Multi-task Cascaded Convolutional Networks) library for detecting faces in images.
-
Embedding Computation
- Employs the FaceNet model, often via the
torch
library, to compute a vector (embedding) for each detected face.
- Employs the FaceNet model, often via the
-
Face Classification
- Uses a HDBSCAN clustering algorithm to group similar face embeddings together.
-
Result Compilation
- Once the faces are classified, the result is compiled and presented in a structured format that informs which images contain which individual(s).
Usage
To utilize the Face Tagger library, follow these steps:
- Load image with functions defined in utils module:
The generator function allows you to loop through all images in a specified directory and create
ImageObject
instances for each one.
from face_tagger.utils import *
image_objects = load_images_from_directory("path_to_images_directory")
Replace path_to_images_directory
with the path to your image directory.
(Note: You don't necessarily need to use a generator for image_objects. You can also create ImageObject list from loaded images in an array and pass them.)
Here is the representation of the ImageObject
class:
Attributes:
- image_id: A unique identifier for the image.
- image_data: Actual image data, loaded using OpenCV.
Example:
img_obj = ImageObject(image_id="unique_id_123", image_data=loaded_image_data)
- Initialize the Face Tagger:
Here, you can set various parameters like
use_gpu
,image_resize_factor
,min_faces_to_identify_human
, andmin_similarity_face_count
.
min_faces_to_identify_human
: Minimum number of faces required to be classified as a human.min_similarity_face_count
: Minimum number of similar faces required to be included in a group.
from face_tagger import FaceTagger
face_tagger = FaceTagger(
use_gpu=False,
image_resize_factor=1.0,
min_faces_to_identify_human=4,
min_similarity_face_count=3
)
- Classify images by person:
Now, use the
classify_images_by_person
method of theface_tagger
instance and pass theimage_objects
from the generator function to classify the images.
result = face_tagger.classify_images_by_person(image_objects=image_objects)
print(result)
With these steps, you can effectively utilize the Face Tagger library to classify images based on the individuals they contain.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file face_tagger-1.0.4.tar.gz
.
File metadata
- Download URL: face_tagger-1.0.4.tar.gz
- Upload date:
- Size: 2.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa12249eff7fb83eed706a0e4c54de8f61e7a2c890235ed67c483eef2a7bfa81 |
|
MD5 | 23dd227228d8d1c3b5d33767906fe00d |
|
BLAKE2b-256 | 77c24d3c4a2a4970f78a9eb3f953d94999691f9e3c17895256743bc5b9d8aa04 |
File details
Details for the file face_tagger-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: face_tagger-1.0.4-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8250278cbf033b0e7d522483bf98962926700c781092dae58c859ea87a20058 |
|
MD5 | f78347160b82fe86c4b8dc50a73c73ac |
|
BLAKE2b-256 | 8efac403e7c932c1c05ea5b73c674439c89c746841d22853b7d19627881b0f82 |