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
-2
votes
1 answer

dlib (latest version) installation error for python 3.7 / 3.8 on windows 10 with pycharm - solved

Tried to install the latest version of dlib on pycharm with latest python version 3.8 / 3.7 always the command throws error and installation fails
Gautham
  • 47
  • 1
  • 6
-2
votes
1 answer

how to install dlib library in anaconda?

Collecting dlib Using cached dlib-19.19.0.tar.gz (3.2 MB) Building wheels for collected packages: dlib Building wheel for dlib (setup.py) ... error ERROR: Command errored out with exit status 1: command:…
-2
votes
1 answer

'Required argument not found' error when calling cv2.putText()

In this line I am getting the following error: cv2.putText(image,"Unknown" + str(conf), (J.left(), J.bottom()),font, 200) Error Traceback (most recent call last): File "C:\Users\ACER\Desktop\PROJECT ALL RESOURCE\PROJECT ALL…
-2
votes
1 answer

I cant install dlib using pip. what is the problem?

ERROR: Command errored out with exit status 1: command: 'C:\Users\dell\Anaconda3\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\dell\AppData\Local\Temp\pip-install-h7ictrqd\dlib\setup.py'"'"'; …
ktb
  • 11
  • 3
-2
votes
1 answer

Does the latest version of opencv have dlib included in it

Just want to make sure if the latest version of opencv have dlib
Ann Mary
  • 39
  • 6
-2
votes
1 answer

Can not import opencv and dlib in anaconda enviroment

When i create a project by Pycharm in Anconda environment, use : conda info --envs i get this : base C:\Users\Admin\Anaconda3 env_dlib C:\Users\Admin\Anaconda3\envs\env_dlib opencv-env …
Ky Doan
  • 1
  • 2
-2
votes
1 answer

Dlib library is not installing on Anaconda

I need to install dlib library on my Anaconda and this page in the image doesn't show any thing. Even when I use pip install dlib It doesn't install.
-2
votes
2 answers

Distance between nose and mouth using opencv and python?

Im tracking two point from my face in a web cam stream using opencv. Im currently doing dist.euclidean(a, b) but the distance change depending how far Im from the camera and this is not what I want, I want the distance to be the same not matter…
lololo wote
  • 113
  • 1
  • 1
  • 6
-2
votes
1 answer

Find the angle of rotation from the centre

I have calculated the yaw,pitch and roll of the head from euler angles as follows in my code. eulerangles = rotationMatrixToEulerAngles(rotation_matrix) yaw = eulerangles[1] pitch = eulerangles[0] roll = eulerangles[2] How do I use these values to…
user3600801
-2
votes
2 answers

Dlib,python,face_detection with neural network

When ever i tried to load the trained model of cnn based face_detectorin dlib.i got this error. detector = dlib.simple_object_detector('mmod_human_face_detector.dat') Traceback (most recent call last): File…
Hasan Latif
  • 65
  • 1
  • 1
  • 12
-2
votes
1 answer

C++ try statement won't work with "#include"

My Dlib installation is in multiple places, so I'm writing a script that will search multiple locations for my necessary files to compile: int main() { try{ #include #include…
Rich
  • 1,103
  • 1
  • 15
  • 36
-2
votes
1 answer

detecting dlib rectangle coordinates in c++

i'm working on college computer vision project but stuck at getting coordinates of the bounding box generated by train_object_detector. i searched through entire documentation but was unable to find the function for getting coordinates in c++. i…
abhishek
  • 11
  • 1
  • 2
-3
votes
0 answers

i am working on computer vision in which i m taking screeshot of a face detected in web cam

My webcam detects a face and take 5 screenshots and save them in a folder if the face IN front of the camera is still it saves 5 still and clear screenshots but if the face is moving it takes some blurry and noisy screenshots which I don't need Is…
1 2 3
72
73