Skip to main content

Questions tagged [face-recognition]

Face recognition is the process of matching faces to determine if the person shown in one image is the same as the person shown in another image. This is distinct from face detection which only determines where an image exists a face. Face recognition has broad use in security technology, social networking, cameras, etc.

face-recognition
-1 votes
0 answers
10 views

i have a error to install dlib library vie pip in ubuntu [duplicate]

i have following error which is happend when i tried to install dlib Collecting dlib Using cached dlib-19.24.4.tar.gz (3.3 MB) Installing build dependencies ... done Getting requirements to build ...
jashk's user avatar
  • 1
-2 votes
0 answers
29 views

OpenCV program cannot detect more than one frame [closed]

I wanted to try using opencv for some simple face recognition (not specific faces, just if it sees a human face or not). I was using this model, installed both opencv and opencv-contrib, and it does ...
Costi2m's user avatar
-4 votes
0 answers
46 views

I face an "IndexError: list index out of range" in the following code [closed]

while True: sucess, img = cap.read() img = cv2.flip(img, 1) imgs = cv2.resize(img,(0,0) , None , 0.25 , 0.25) imgs = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) facecurframe = ...
Shrinjoy Das's user avatar
0 votes
1 answer
43 views

How to Reduce False Positives in Face Recognition Using FAISS for Large Face Databases?

I am developing an attendance tracking system using face recognition. The system works as follows: 1. Face Detection: Detect faces using Ultra Face. 2. Face Encoding:Encode detected faces using ...
RajeshKumar S's user avatar
0 votes
1 answer
36 views

problems with extracting face pixels from the image

I need to pass the image that comes from the camera through a model with tensorflow, in the _extractFacePixels function the image gets there but the originalImage comes out as null // Verificar se ...
Pedro's user avatar
  • 61
-1 votes
1 answer
25 views

i have an error with my face verification, please help me

I create educational websites. and a system where when I register I save a picture of the registrant's face. Then, when you want to do a system problem, you have to make sure that the person is ...
Baswara Nugraha's user avatar
0 votes
0 answers
13 views

train facial recognision model with less data

I am using dlib for facial detection for getting face images of the user and cnn for recognision model. I want the model to get trained with as much as less image data and im trying to train the ...
Paul Atreides's user avatar
0 votes
1 answer
124 views

How do i modify image in python to fit face_recognition parameters (8bit gray or RGB image)

I'm trying to modify my image so that it fits the supported image type. I've tried using cv2 and Pillow to modify the dtype however it returns the error "RuntimeError: Unsupported image type, ...
ovoxojxy's user avatar
-4 votes
0 answers
26 views

i am working on a face recognition project and this error occurs

"C:\\Users\\Rahul Poojary\\PycharmProjects\\pythonProject4.venv\\Scripts\\python.exe" "C:\\Users\\Rahul Poojary\\PycharmProjects\\pythonProject4\\project\\main.py" Exception in ...
Rahul Poojary's user avatar
0 votes
0 answers
37 views

How to fix the accuracy of the face detector box?

I am developing a face recognition attendance application. The application successfully displays a face detector box, but the accuracy of the face detection is not satisfactory. The detector often ...
Khafah SI's user avatar
-1 votes
2 answers
45 views

Face Recognize From the Database using embedding technique

I am working on a project aimed at recognizing whether a photo of any individual exists in the university's records. The proposed method involves storing the embeddings of each student's photo, along ...
Muhammad Ali Mujtaba's user avatar
0 votes
2 answers
52 views

How to feed DeepFace.find() the faces extracted by DeepFace.extract_faces()?

I'm creating a face recognition script that process a list of photos and check if the face has a match in the database. If Yes, add the cropped face to its matched folder in the database. If No, add ...
Baraa 's user avatar
  • 63
-1 votes
0 answers
49 views

How can I fix my face-recognition model error?

I have this current code for a face recognition model, I keep facing errors when I want to start and train my model, probably because of problems related to the triplet loss and anchor, but I could ...
MAHMOUD JAMEEL ATTA DAASAN's user avatar
0 votes
1 answer
85 views

Why am I having this issuse while Installing dlib

I am doing a project which requires the face-recognition library for which dlib was needed. I am having an issue installing "dlib" for a project. The terminal is throwing the following error ...
pd_prince's user avatar
0 votes
0 answers
9 views

In my deep face recognition project i am encountering an error saying: "AttributeError: 'BinaryCrossentropy' object has no attribute '_id'"

@tf.function def train_step(batch): # Record all of our operations with tf.GradientTape() as tape: # Get anchor and positive/negative image X = batch[:2] # Get label y = batch[2] ...
Ranjan U's user avatar

15 30 50 per page
1
2 3 4 5
123