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

install dlib using Visual Studio 2015 libraries

I've downloaded dlib and when I'm trying to install It using python setup install It give me this error, I'm using Visual Studio 2015 professional running install running bdist_egg running egg_info writing dependency_links to…
-1
votes
1 answer

error in installing dlib

While installing dlib i'm getting error executing command $ cmake --build . --config Release . The build abruptly stops showing this error : `$ cmake --build . --config Release[ 75%] Built target dlib [ 75%] Building CXX object…
-1
votes
2 answers

Detection of facial landmarks in any non frontal face

I have used dlib library for facial landmark detection. But when the face is non frontal then dlib's "frontal_face_detector" can't detect the face. Is there any other way to detect facial landmarks in a profile face?
Ziniz
  • 65
  • 5
-1
votes
2 answers

How make eye and nose bigger or smaller in opencv

i'm trying write an application make eye or nose bigger after selfphy with opencv and dlib , can you help me solve solution. Thank
-1
votes
1 answer

bad input shape () : Openface issue when training the classifier

I am trying to recognize people by photo following the instructions of this great tutorial I found online: Modern Face Recognition with Deep Learning This project uses Python, Openface and dlib in order to accomplish the task I have been able to set…
Employee
  • 3,109
  • 5
  • 31
  • 50
-1
votes
1 answer

Assigning unique face id realtime

Im using the following code to generate each person an id. It works partially however the problem is that when more people comes in, each of them are getting the same id. Lets say if there are totally 3 persons, it is assigning the id 3 to everyone.…
user3600801
-1
votes
1 answer

OpenCV DLib hybrid overlay lib on opencv

How can I overlay the results of the following DLib operation onto an OpenCV image? dets = detector(image, 1) print("Number of faces detected: {}".format(len(dets))) for k, d in enumerate(dets): shape = predictor(image, d) I'd like to draw…
David Kachlon
  • 599
  • 2
  • 5
  • 17
-1
votes
1 answer

Cmake Error During Installation of dlib on Windows?

I am trying to install dlib-19.2 in Window 7.But during the building process of dlib I get these errors. Configuring cmake ... -- Building for: NMake Makefiles -- The C compiler identification is unknown -- The CXX compiler identification is…
james.bondu
  • 1,092
  • 2
  • 18
  • 27
-2
votes
2 answers

I'm getting an error in python while installing the dlib library

when I try to install dlib library via pycharm in python, I get this error. I updated pip but it didn't improve, I tried it in different python versions and I still get the error.enter image description here I updated cmake, I updated pip, python…
-2
votes
1 answer

Cannot compile c++ project with opencv and dlib libraries in vs16

This is my code in vs project: #include #include #include #include #include #include…
Den4ik100
  • 1
  • 1
-2
votes
2 answers

dlib is installed but unable to import (vs code)

I have installed dlib library successfully for python 3.10.4 on my computer using the traditional pip command. But after installing now I am trying to import the same and it is throwing error. Please help me out on the same.enter image description…
-2
votes
1 answer

Is the Dlib library free?

Is the Dlib library free? Because at the company we have plans to use it to recognize documents with Python. Where can I find the Dlib license?
megaultron
  • 399
  • 2
  • 15
-2
votes
2 answers

OpenCV cv::Mat , imshow() , cv::VideoCapture is not working at runtime

Something strange is happen. I tried all the best way I can but not able to get the correct solution for it. Rectenly I am working on one project in which dlib and open cv lib is used for face detection. The thing is I am able to achieved that but…
Satyam Mishra
  • 333
  • 3
  • 10
-2
votes
2 answers

from _dlib_pybind11 import * ModuleNotFoundError: No module named '_dlib_pybind11'

I actually working on a face recognition project but getting an error such as: from _dlib_pybind11 import * ModuleNotFoundError: No module named '_dlib_pybind11' Please help I'll appreciate any bits of help. OS:windows 10 Python 3.8 dlib…
John
  • 1
  • 1
  • 1
-2
votes
1 answer

dlib cuda not using GPU

I wanted to improve my CNN facial recognition code by using Nvidia GPU instead of CPU. So I found and install specific dlib_cuda following these instructions. Installation went well, and so I checked if dlib using cuda in my Python…
CSLII
  • 31
  • 1
  • 4
1 2 3
72
73