dlib Questions
3
I have been building a facial recognition tool and I am trying to install dlib.
Every time I have tried to install dlib, I get this message:
× Building wheel for dlib (pyproject.toml) did not run ...
4
i am trying to crop out the faces from instagram avatars by first detecting the faces and then resizing the image. i am reading all the images which have been stored in a dataframe and then creatin...
Loutitia asked 13/2, 2018 at 10:25
7
trying to install dlib and face_recognition from Ubuntu
taking reference from https://www.learnopencv.com/install-dlib-on-ubuntu/
but after following commands:
i am stuck at:
Building wheels for ...
Chic asked 15/2, 2019 at 17:49
13
im getting this error while trying o install dlib on cmd
i already install cmake version 3.26.1
visual studio
n python version is 3.10
pip install dlib
and the results
Collecting dlib
Using cached...
Electrical asked 19/4, 2023 at 7:43
5
I have already installed CMake by pip install cmake and tried to install face_recognition but it still gives me a RuntimeError. I'm using 'Python 3.7.3, x32'
I also tried to install the dlib by pip...
8
I followed the step how to install dlib python on Windows and it works on CMD but in Python's IDE it said ImportError: No module named 'dlib'
Scibert asked 16/10, 2018 at 6:52
3
I'm trying to install dlib. I followed every single tip on the internet but its just not working.
I'm using/tried
windows 10
cmake 3.21.4 (it's on path)
python 3.8.12 and 3.6.4
conda 4.10.3
pip 21...
3
Basically i'm trying to check if a face is upside down in an image using this library https://github.com/takuya-takeuchi/FaceRecognitionDotNet.
Take example of the image below
This is an image tha...
Bitty asked 9/6, 2021 at 8:14
3
Solved
I am a newbie and having difficulty on resolving this issue.
What I am trying to do is run the sample code from face_recognition using a webcam. Both of the two example doesn't work on me and keeps...
Eveliaevelin asked 4/4, 2023 at 7:36
4
Solved
I'm trying to build DLIB for an iOS project. Running the cmake results in a libdlib.a and a load of .o files.
When I add the library to an Xcode project I get warning that the library hasn't been ...
19
I want to use dlib with python for image recognition. I have the python app running great with OpenCV on Windows 10, but when I want to install dlib from the cmd it gives me this following error :
...
Liggitt asked 28/1, 2017 at 16:58
2
Solved
I am using VS Code on Windows 10. When I try to install the face_recognition package using pip I get the following error:
ERROR: Command errored out with exit status 1:
command: 'c:\users\admin\a...
3
Solved
I am trying to run some face frontalization code (using Python3 on Windows10), the code uses opencv and dlib and requires a file called shape_predictor_68_face_landmarks.dat. The code tries to auto...
Langill asked 19/7, 2017 at 0:16
4
I use OpenCV's face detector with C++ for dlib's face alignment instead of dlib's detector because of slow speed.
To use dlib's face alignment, I have to pass the detection rectangle to the face al...
3
Solved
I am getting error on pose_predictor = dlib.shape_predictor(predictor_model) on dlib python.
RuntimeError: Error deserializing object of type short
while deserializing a floating point number.
...
Tuque asked 15/5, 2017 at 13:47
0
This works (matrix addition)
dlib::matrix<double, 2, 2> a;
dlib::matrix<double, 2, 2> b;
dlib::matrix<double> rez;
a = 1.0, 1.0, 1.0, 1.0;
b = 3.0, 3.0, 3.0, 3.0;
rez = a+b;
But ...
Venesection asked 15/4, 2021 at 12:2
5
Solved
I am trying to install OpenCV, dlib on Windows 10 on Anaconda Python 3.7.
I have installed Visual studio 2015 as prerequisite along with CMake. When I am trying to install dlib on my computer it is...
Purslane asked 23/10, 2019 at 16:40
2
Solved
I am using windows 10
python 3.7.4
I have a code where it imports dlib
import dlib
But when I try to install it using pip install dlib it throws an error
ERROR : Command errored out with exi...
Sausauce asked 9/5, 2020 at 18:49
1
My System Configuration:
Windows 10,
Nvidia 940mx 2GB GDDR5 GPU, 8GB RAM, i5 8th generation.
Software installed:
CUDA toolkit 9.0
cuDNN 7.1.4
I have successfully installed dlib with GPU supp...
Howlet asked 6/8, 2018 at 18:15
3
Solved
This is my cmakelists.txt:
project( WolframMachine )
cmake_minimum_required(VERSION 3.1)
set (CMAKE_CXX_STANDARD 11)
set(CMAKE_SUPPRESS_REGENERATION true)
include(ExternalProject)
set(Boost_INCLU...
10
Trying to install dlib on Windows 10 using pycharm package manager.
I have Numpy, opencv-python, setuptools and wheel installed.
tried installing dlib then got the first error asking me to in...
6
I'm getting an error when trying to install dlib on Python 3.7 on macOS with
pip3 install dlib
I have installed CMake, so that is not the problem.
I'm getting these error messages:
Failed building...
1
TL;DR
I am getting the following error for a local Swift package dependency when attempting to use it within an iOS project in Xcode:
The package product 'DlibWrapper' cannot be used as a dependenc...
2
I am trying to install dlib for face-recognition for python 3.7 on windows 10, I explored few ways but I am getting errors.I tried below steps-
Installed cmake using 'pip install cmake'. This wor...
Nila asked 9/11, 2019 at 8:8
3
I am struggling with installing latest version of dlib (http://dlib.net/, v19.17) for Python on the Google Coral Dev Board. It works well with Raspberry Pi 3 B+ (that seems to have exactly the same...
Amphibian asked 7/7, 2019 at 17:23
1 Next >
© 2022 - 2024 — McMap. All rights reserved.