face-recognition Questions
3
I am working on a face recognition project where I can first enroll myself and then start a recognize script which will start my webcam and it will recognize myself. I am following this article and...
Coparcener asked 28/8, 2020 at 3:34
5
Solved
import face_recognition
image = face_recognition.load_image_file("My_Image.png")
face_locations = face_recognition.face_locations(image)
print("I found {} face(s) in this photograph.".format(len(f...
Yore asked 14/3, 2019 at 3:12
7
trying to install dlib and face_recognition from Ubuntu
taking reference from https://www.learnopencv.com/install-dlib-on-ubuntu/
but after following commands:
i am stuck at:
Building wheels for ...
Chic asked 15/2, 2019 at 17:49
3
Solved
I am a newbie and having difficulty on resolving this issue.
What I am trying to do is run the sample code from face_recognition using a webcam. Both of the two example doesn't work on me and keeps...
Eveliaevelin asked 4/4, 2023 at 7:36
3
Solved
I'm looking about implementing MLKit face recognition library in my Android App. The only thing that I can't understand is if it's possible and how can I compare two photos and detect if they are t...
Gallinule asked 17/12, 2018 at 14:57
3
Solved
I'm new at deep learning and i follow tutorial about face detection.
model = canaro.models.createSimpsonsModel(IMG_SIZE=IMG_SIZE, channels=channels, output_dim=len(characters),
loss='binary_cross...
Morion asked 8/12, 2022 at 18:15
5
Solved
I cloned this Project from Github
https://github.com/PacktPublishing/Java-Machine-Learning-for-Computer-Vision.git
I am going to use the FaceRecognizition
from this project. But as soon as I try
to...
Asthma asked 10/7, 2021 at 19:37
2
I am using the OpenCV package with the face_recognition package to detect faces on my laptop webcam.
Whenever I run it, the code runs fine but I run into the same GStreamer error.
from imutils.vide...
Androgyne asked 25/7, 2020 at 17:43
5
Solved
Is there a way to get a measurement of confidence level when using haar face detection using OpenCV?
I developed an application for face detection using OpenCVs HAAR cascade face detection. The algorithm works fine, however every once in a while It finds patterns on the wall or ather things that a...
Cabalism asked 10/5, 2012 at 8:17
2
I'm developing a face recognition application using android and openCV. My android studio version is 3.5.3 and openCV version is 3.4.10. The phone on which I'm running my application is arm64-v8a a...
Lavina asked 15/4, 2020 at 9:48
4
Solved
First of all here is my github link for the question.
And here is my question:
I would like to do a face comparison function using Python. And I can successfully(?) recognize faces using OpenCV. ...
Thersathersites asked 12/9, 2017 at 4:55
0
Currently I'm using expo-local-authentication and it works properly when Android device has touch id / fingerprint unlock possible also. Normal behaviour is when fingerprint is added and face regis...
Nucleoplasm asked 17/8, 2022 at 15:50
3
I am trying to detect faces via camera using VNImageRequestHandler (iOS Vision).
When I point on the photo by the camera in landscape mode it detects faces but with opposite orientation mode.
let...
Lavation asked 22/6, 2017 at 1:12
1
I have built a face detection app using opencv and transfer learning model (resnetSSD).
Output of application : video will open and model will be able to recognize the faces.
Application is running...
Decalcomania asked 21/5, 2021 at 8:34
5
There is not enough info about camera2 face detection mechanism. I used the Camera2 sample from Google: https://github.com/android/camera-samples
I set face detection mode to FULL.
mPreviewRequestB...
Concerning asked 19/5, 2015 at 19:17
3
I would like to know is there is a way to blur the faces that have been automatically identify by the haarcascade face classifier.
using the code below, I'm able to detect the faces, crop the imag...
Pachalic asked 5/8, 2013 at 18:15
1
I've implemented face-API in my react project which is detecting a single face with detectSingleFace from the picture.
Now I want to move one step further. I want face-api to auto-crop the face aft...
Peoria asked 15/5, 2021 at 6:47
3
Solved
I am getting error on pose_predictor = dlib.shape_predictor(predictor_model) on dlib python.
RuntimeError: Error deserializing object of type short
while deserializing a floating point number.
...
Tuque asked 15/5, 2017 at 13:47
5
Solved
I am teaching myself how to use openCV by writing a simple face recognition program I found on youtube. I have installed opencv version 2 as well as numpy 1.8.0. I am using python 2.7.
I copyed thi...
Isolated asked 27/3, 2016 at 1:23
1
Is there any simple library/framework for Android/Java which can detect a face on a picture and give me some information about the person on the picture? I mean information like gender, age, emotio...
Barringer asked 29/10, 2015 at 17:19
2
The DeepFace paper from Facebook uses a Siamese network to learn a metric. They say that the DNN that extracts the 4096 dimensional face embedding has to be duplicated in a Siamese network, but bot...
Trotta asked 8/2, 2018 at 19:21
4
Is there is a way to compare two faces (perhaps with OpenCv) and get a score of their likeness? I mean to apply a facial recognition algorithm, but only between 2 faces, not on an entire dataset.
...
Jere asked 6/7, 2011 at 21:32
1
My System Configuration:
Windows 10,
Nvidia 940mx 2GB GDDR5 GPU, 8GB RAM, i5 8th generation.
Software installed:
CUDA toolkit 9.0
cuDNN 7.1.4
I have successfully installed dlib with GPU supp...
Howlet asked 6/8, 2018 at 18:15
2
I want to run Face Recognition on CCTV footage. I have implemented several distance metrics for Face Embedding comparison during inference like Euclidean distance, Cosine distance, KDTree, SVM, L1 ...
Hessite asked 19/4, 2020 at 10:34
4
RuntimeError:
CMake must be installed to build the following extensions: dlib
Failed building wheel for dlib
Running setup.py clean for dlib
Failed to build dlib
Yoke asked 14/9, 2018 at 12:41
1 Next >
© 2022 - 2025 — McMap. All rights reserved.