Questions tagged [facial-identification]

115 questions
0
votes
1 answer

Bug ommits data interval - possible causes?

I have encountered a strange bug and wanted to ask if someone has any idea what might be the cause. The bug: When I correlate the facial width-to-height ratio (FWHR) of NHL players with their penalty minutes per games played (PIM/GP), a section of…
C.L.
  • 106
  • 6
0
votes
0 answers

Using Python, how can we directly get measurements of facial features?

Are there any libraries/packages in Python which help detect landmarks from facial images and then compute facial measurements like the distance between the eyes, eyebrow length, lip thickness...?
0
votes
2 answers

How to get rid of this problem in openCV tkinter code

I am working on a facial recognition based attendance system .This is my first project so i am not well acquainted with how to deal with errors. I am stuck in the middle and don't know how to solve the error. My terminal displays the following…
0
votes
2 answers

list index out of range error in facial recognition

I'm getting this error on the line that goes encoding = face_recognition.face_encodings(image)[0]. As i am trying to get the first face it identifies. The code runs without the [0] but is stuck on the first image identification. Here's the…
0
votes
2 answers

Cognitive Services - How to add multiple Faces from a Live Stream to Azure FaceList ? (Python)

Problem Background: I have created an Azure FaceList and I am using my webcam to capture live feed and: sending the stream to Azure Face Detect getting Face Rectangle returned by Face Detect using the returned Face rectangle to add Face Detected…
Ateeb
  • 5,413
  • 3
  • 10
  • 17
0
votes
2 answers

Using Azure Face Api in Python, How to Return a single faceId or a group of FaceIds if the same person is detected in Video Stream?

I am using Azure Face APi to detect faces in video stream, but for each detected face Azure returns a unique faceId( which is exactly what the documentation says). The problem is, Let's say Mr.ABC appears in 20 video frames, 20 unique faceIds gets…
Ateeb
  • 5,413
  • 3
  • 10
  • 17
0
votes
2 answers

Blurry faces in open CV2 face detection

I am using Open CV2 face detection in Python. It works very well, but often finds faces that, although they really are faces, are so blurry as to be useless. It succeeds in finding faces that can't be recognized as male or female, adult or…
Wasabe
  • 77
  • 1
  • 1
  • 7
0
votes
0 answers

PyTorch CNN gives different results

I am trying to make a face recognition model with PyTorch. My model performs well with both loss scores for training and validation close to 0. The problem is when I tested it using same input, it gives me different results like below: and…
0
votes
1 answer

Microsoft Azure Face Service - GDPR

I'm conducting a DPIA for a class from the point of view of Microsoft proposing their Azure face service. I am a bit confused at how the service works. Their cognitive services terms say: "Cognitive Services customers own, and can manage and delete…
0
votes
1 answer

OpenCV Alpha Layer PNG Edge Detection

I have had a very difficult time getting the numpy matrices of my background and augmentation target. This project is meant to create a face filter with emotion detection that will eventually be integrated into an API. The issue I am receiving is I…
0
votes
1 answer

image aling with cv2 instead of HOG

Hi I am working on facial recognition. To increase performance I want to use facial alignment. When I use the HOG face identifier, described e.g., by Adrian I get an aligned image out. from imutils.face_utils import rect_to_bb from dlib import…
0
votes
1 answer

What are the good practices to building your own custom facial recognition?

I am working on building a custom facial recognition for our office. I am planning to use Google FaceNet, Now my question is that you can find or create your own version of facenet model in keras or pytorch there's no issue in that, but regarding…
0
votes
2 answers

Best way to identify a person without using facial recognition (deep learning)

I have a cctv video where I want to identify a person. I tried both facial recognition and object tracking but both failed to produce high accuracy since the quality of the frame isn't great and the face disappears from the frame sometimes. I have…
Mohamed Ali
  • 263
  • 3
  • 13
0
votes
1 answer

API for face Identification (Android Xamarin)

What Nuget package should I use for developing an Android app (Xamarin) with face identification element? I tried to use the "Xamarin.microsoft.cognitive.face" package but for some unknown reason, I can't use this in Xamarin. I can't find any…
0
votes
0 answers

Running facial recognition script in Django

I have a facial recognition script in my django app, below is the code, It returns a string which is the name of the person found. The script works well on its own when i pass an image parameter to it. I want to run this script in my views.py so…
Daliseiy
  • 31
  • 7