-
Many cloud computer vision have face detection algos, but they might find a face on packaging while we're looking for faces of users.
Allow to whitelist "known faces" and to flag actual faces.
-
hello,
Recently, we use dlib on our TK1(arm) board, but seems it take too long(about 3s) to detect one face in the picture.
We use 'pip install dlib' to install, and have a test used below code:…
gangm updated
5 years ago
-
Ubuntu 16.04
python3.6
dlib 19.15.0
NVIDIA Quadro P4000
```
import dlib
from skimage import io
detector = dlib.get_frontal_face_detector()
img = io.imread("./023_85.jpg")
dets = detecto…
-
seems downscaling the image is useless for speed.
btw, 95M of dat file is too big. is that the reason for the slow?
I'v speed up the face detection to 17ms, but I cant speed the landmark detecti…
-
Currently the code downloads dlib's CNN face detection model from `https://www.adrianbulat.com/downloads/dlib/mmod_human_face_detector.dat`.
Although it is supposed to be the same as one from `fac…
-
# Summary of your issue
Hello again!
I compiled the libraries for CUDA support, and was able to run the DnnFaceRecognition fine. Using the same libraries with DnnMmodFaceDetection however, I run int…
-
hi
first, Sorry, I do not know English;
```
$landmarks = dlib_face_landmark_detection("~/a.jpg");
var_dump($landmarks);
```
What number of landmark points does it return?
Like the image bel…
-
hello and thank you for the code
I'm trying to output the 3D landmarks of an input image and I'm a bit confused .
(I'm running the code on KDE Neon - Ubuntu 16.04)
this is the command I'm using
…
-
Generating the mesh works fine.
```console
(mesh, pose, shape_coeffs, blendshape_coeffs) = eos.fitting.fit_shape_and_pose(model, blendshapes, landmarks, landmark_ids, landmark_mapper, image_width, i…
-
hello.
I'm just starting with dlib , playing with the face detection examples but there is something I'm struggling with.
usually the picture is upsampled with
pyramid_up(img)
I'm drawing the lan…