Questions tagged [dlib]

Dlib is a modern C++ toolkit containing machine learning algorithms and tools for creating complex software in C++ to solve real world problems. (Source http://dlib.net/)

Major Features

  • Documentation
  • High Quality Portable Code
  • Threading
  • Networking
  • Graphical User Interfaces
  • Numerical Algorithms
  • Machine Learning Algorithms
  • Graphical Model Inference Algorithms
  • Image Processing
  • Data Compression and Integrity Algorithms
  • Testing
  • General Utilities

Source http://dlib.net/

1094 questions
-1
votes
1 answer

How can i get side view of humans face on opencv by using the facial recognition?

I tried to use Haar cascades called haarcascade_profileface.xml and lbpcascade_profileface.xml together but the camera does not even open at all. How can I fix this issue where I want both haar cascades to work? This is done on the raspberry pi and…
Kratos
  • 3
  • 5
-1
votes
1 answer

Error with dlib and face_recognition library

I am getting an error while importing the face_recognition library. I have tried using a Virtual Environment too. Please help. Traceback (most recent call last): File "", line 1, in File "C:\Program…
Giga Blitz
  • 46
  • 1
  • 2
  • 7
-1
votes
1 answer

CNN vs SVM for smile intensity detection training?

I have a dataset made up of images of faces, with the corresponding landmarks that make up the mouth. These landmarks are sets of 2D points (x,y pixel position). Each image-landmark set data pair is tagged as either a smile, or neutral. What i would…
anti
  • 3,011
  • 7
  • 36
  • 86
-1
votes
1 answer

Does windows 10 supports the face_recognition?

I want to know whether windows 10 supports face_recognition and any face detection? because I continuously getting the following error although, I successfully installed dlib. Thanks.
Aishwarya
  • 1
  • 2
  • 3
-1
votes
2 answers

How can i install dlib in my windows when i have also downloaded visual studio ?? This error starts comming

Microsoft Windows [Version 10.0.17763.805] (c) 2018 Microsoft Corporation. All rights reserved. C:\Users\91935>pip install dlib Collecting dlib Using cached…
-1
votes
1 answer

Issue Trying to Pip Install facial_recognition library

Running into the below errors involving the dlib Googling, installing Cmake on its own ERROR: Command errored out with exit status 1: command: 'c:\users\new age\appdata\local\programs\python\python37\python.exe' -u -c 'import sys, setuptools,…
Georgejr6
  • 11
  • 2
-1
votes
1 answer

How can I solve Error of installation Dlib?

How I can install dlib. I tried to install dlib in many way but it's alway error. Got an error: ERROR: Complete output from command 'C:\ProgramData\Anaconda3\python.exe' -u -c 'import setuptools,…
Hommy
  • 11
-1
votes
1 answer

Detect face from ip camera using opencv

I am trying to use an IP camera to detect faces by opencv(python) by 192.168.1.36:8080 url. I can connect to a mobile camera (Ip camera) perfectly but openCV cannot detect faces. When I use laptop camera everything fine but by Ip camera, I cannot…
Nima.S-H
  • 777
  • 1
  • 9
  • 19
-1
votes
1 answer

Vector.push_back(pair(x1,x2 )); does not work

I used a DLIB parallel_for loop to do some processing and add coordinates to a vector> that has been declared outside the loop. But I cannot use the vector.push_back() function from within the loop. Verified whether there are any declaration…
-1
votes
1 answer

Is it possible to install dlib on Windows 7?

I am trying to create a face recognition system but most of the approaches require the dlib library ..is it possible to install dlib on windows?
-1
votes
2 answers

Python dlib - Read image instead of webcam

I am working with this example Python script from the article enter link description here from imutils import face_utils import dlib import cv2 # Vamos inicializar um detector de faces (HOG) para então # let's go code an faces detector(HOG) and…
fightstarr20
  • 11,682
  • 40
  • 154
  • 278
-1
votes
1 answer

Dlib shape predictor for detecting another shapes

I want to ask can I implement dlib c++ library do detect not face shape but train to detect another shapes? Thank you for your answers
Dona
  • 11
  • 4
-1
votes
1 answer

Python Library wont load unless run from root

I have some code I'm playing around with using dlib, but when i try to import dlib in my python code i get this error: File "boom.py", line 32, in from faceSwap import * File "/home/user/coding/faceSwap.py", line 22, in…
Fight Fire With Fire
  • 1,626
  • 3
  • 19
  • 28
-1
votes
2 answers

unable to find package when apt install

I failed to find the package when I want to install libdlib-dev.I have run apt update and I also change the server.Both of them don't work.My system is ubuntu 14.04. apt failed info
David Chan
  • 641
  • 1
  • 7
  • 10
-1
votes
1 answer

Install dlib with cuda support ubuntu 18.04

I have CUDA 9.0 and CUDNN 7.1 installed on Ubuntu 18.04(Linux mint 19). Tensorflow-gpu works fine on GPU(GTX 1080ti). Now i am trying to build dlib with CUDA support: sudo python3 setup.py install --yes USE_AVX_INSTRUCTIONS --yes DLIB_USE_CUDA…
user1941407
  • 2,722
  • 4
  • 27
  • 39