Questions tagged [face-detection]

Face detection is a computer technology that determines the locations and sizes of human faces in arbitrary (digital) images. It detects facial features and ignores anything else, such as buildings, trees and bodies.

Face detection is a computer technology that determines the locations and sizes of human faces in arbitrary (digital) images. It detects facial features and ignores anything else, such as buildings, trees and bodies.

NIST provides the Mugshot Identification Database (MID). The database contains approximately 3250 variable size images and can be used for developing, training and testing automated systems.

Face detection page on Wikipedia

1726 questions
0
votes
1 answer

Face detection with OpenCV and

Im trying to make face detection with Python's OpenCV lib. I have seen the code from the web but for some reason I always get the same error. My haarcascades, .py and my image are in the same folder called FaceDetection. This is the line of error…
taga
  • 3,537
  • 13
  • 53
  • 119
0
votes
1 answer

Not able to detect eye blink event with firebase ML kit

I'm using the Firebase ML-Kit for face detection, now i want to implement eye blink but i am not able to detect eye blink. I'm always getting leftEyeOpenProbability and rightEyeOpenProbability 1.0. I am using following code same as…
0
votes
0 answers

FaceAware Imageview in Android

I am looking for face Aware Image-view. Instead of cropping Image or simply center crop scale type of Image-view, the face should detect in image-view and adjust face to center of Image-view. Is there any Android Custom Image-view library provide…
0
votes
1 answer

How to execute python script (face detection on very large dataset) on Nvidia GPU

I have a python script that loops through a dataset of videos and applies a face and lip detector function to each video. The function returns a 3D numpy array of pixel data centered on the human lips in each frame. The dataset is quite large (70GB…
0
votes
0 answers

how to developed media player in python that works base on face detection?

I want to develop a Windows Media Player in Python that works using face detection. If a face detected using a webcam then the video will play, otherwise it is paused. So where should I start, what tools are used for media players and face detection…
0
votes
1 answer

Getting error:'Image' does not contain a definition for 'DetectHaarCascade' and no accessible extension method 'DetectHaarCascade'

I'm a doing a project on face detection using EmguCV in C#.My goal is to detect faces from a webcam. Meanwhile I am getting some errors. I included all EmguCV dependencies and OpenCV dependencies. using System; using…
sandeep s
  • 11
  • 3
0
votes
0 answers

Web Camera Hangs when I try to open it to recognize the detected face using Emgu CV

I am developing Teacher Attendance Management System using face recognition technique in C# using Emgu CV, first of all teachers' faces will be trained (registered) then their attendance will be marked using Face Recognition technique. But whenever…
Bilal Hassan
  • 37
  • 1
  • 6
0
votes
1 answer

Decreasing the image size after Face Detection

I tried this face detection program that uses haarcascades in opencv.I was able to get the required output (Finding the number of faces in the provided image), but there is a slight problem with the resultant image which draws rectangles around the…
Fiestyhokage
  • 25
  • 2
  • 9
0
votes
1 answer

What are the input image size requirements for CoreML Vision face detection

I'm working with Vision framework to detect faces in images. I couldn't find in the Apple's documentation what are the input image requirements. Usually when working with a machine learning model, and particularly with .mlmodel in CoreML, it…
Sanich
  • 1,739
  • 6
  • 25
  • 43
0
votes
2 answers

MTCNN_face_detection_alignment lagging in IP camera, Convention behind opencv cv2 videocapture frame matrix

I am just trying to detect and recognize faces from the frame read through CV2 VideoCapture. For detection, using Tensorflow implementation of the face detection / alignment algorithm found at…
Jeyan
  • 729
  • 1
  • 14
  • 27
0
votes
0 answers

I installed cv2,when i run the code using cascade classifier class it is showing that module 'cv2' has no attribute 'CascadeClassifier'

I installed opencv and i run the code for face detection using the class CascadeClassifier, but getting the error: AttributeError: module 'cv2' has no attribute 'CascadeClassifier' Code: import cv2 face_cascade =…
0
votes
0 answers

How to execute face detection with non-local files in React JS app?

Right now I'm working on a movie browser app which displays images of the acting cast. The images themselves are loaded from an external source via a URL link. I'm wondering how I can pass those images through a face detector, and display the…
T.Mung
  • 31
  • 7
0
votes
1 answer

Need proper demo for face detection using opencv

Hello is there anybody who can help me with the opencv face detection with latest library for android. I already tried many demo from github but i got issues like library libtbt.so not found and app gets crash. If anyone has proper solution please…
Emmi Ruhu
  • 1
  • 1
0
votes
2 answers

cannot upload file to an Api using axios

cannot upload an image to microsoft Azure face-detect, the Docs says that i should upload [binary data] with content-type :…
mHaridy
  • 11
  • 1
  • 2
0
votes
3 answers

Detect facial landmarks inside a detected face image using opencv dnn face detector

I trying to detect the 68 facial landmarks of human face. I detected the face using OpenCV dnn face detector as in https://www.pyimagesearch.com/2018/02/26/face-detection-with-opencv-and-deep-learning/ The face detection process done successfully,…