dlib Questions

3

I installed dlib using pip. my graphic card supports CUDA, but while running dlib, it is not using GPU. Im working on ubuntu 18.04 Python 3.6.5 (default, Apr 1 2018, 05:46:30) [GCC 7.3.0] on li...
Inflow asked 21/8, 2018 at 6:46

4

Solved

I am using the following code to detect face and draw rectangle on top of the face. while True: # get video frame ret, img = cap.read() input_img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) img_h,...
Tyra asked 4/9, 2017 at 11:53

3

Visual studio 2015 is not installed I have installed all the requirements before building dlib in python: Cmake python 3.6 and other bindings. while installing dlib using pip: pip install ...
Herman asked 7/8, 2018 at 7:58

3

My machine has Geforce 940mx GDDR5 GPU. I have installed all requirements to run GPU accelerated dlib (with GPU support): CUDA 9.0 toolkit with all 3 patches updates from https://developer.nvidi...
Impassive asked 5/8, 2018 at 19:11

1

Solved

I am currently learning OpenCV API with Python and its all good. I am making decent progress. Part of it comes from Python syntax's simplicity as against using it with C++ which I haven't attempted...
Trulatrull asked 13/5, 2016 at 16:28

3

Solved

I'm trying to install the dlib Python library. On some systems (macOS, stock Ubuntu 14.04) pip install dlib works fine, but in the Ubuntu 14.x that's part of our CircleCI environment it fails with ...
Minnaminnaminnie asked 3/3, 2017 at 15:27

1

I am trying to use Chinese whispers algorithm for face clustering. I have used dlib and python for extracting features for each face and mapped into 128 D vector as described by Davisking at https:...
Roulette asked 5/6, 2017 at 6:25

4

Solved

i want to save the detected face in dlib by cropping the rectangle do anyone have any idea how can i crop it. i am using dlib first time and having so many problems. i also want to run the fisherfa...
Ulbricht asked 12/10, 2016 at 21:39

1

In my face recognition project a face is represented as a 128-dimensional embedding(face_descriptor) as used in FaceNet. I could generate embedding from image in 2 ways. Using Tensorflow resnet mo...
Consciousness asked 4/4, 2018 at 11:0

1

Solved

I already have a facial landmark detector and can already save the image using opencv and dlib with the code below: # import the necessary packages from imutils import face_utils import numpy as n...
Baty asked 8/3, 2018 at 1:26

1

I used conda install -c conda-forge dlib to successfully install dlib but when using import dlib I got ModuleNotFoundError I don't want to go all the way to manually build dilb using pip install d...
Import asked 11/2, 2018 at 7:29

10

Sorry if this is basic but I'm trying to install dlib to use with python as mentioned in (http://blog.dlib.net/2014/04/dlib-187-released-make-your-own-object.html) "Make your own object detector in...
Astereognosis asked 5/5, 2015 at 0:11

1

Solved

I am working on facial landmarks and therefore I have installed dlib on my mac. When I try to execute a program in Xcode from learnopencv.com, the compiler says: error "DLIB_NO_GUI_SUPPORT is defi...
Erich asked 18/9, 2017 at 13:57

1

I know similar Question has been asked Before:- Mobile Vision API - concatenate new detector object to continue frame processing I am receiving the frame but when I call frame.getBitmap() it retur...
Sixteenth asked 27/4, 2017 at 3:33

1

Solved

I am working on a program in C++ which should detect faces from webcam stream, than crop them using face landmarks and swap them. I programmed face detection using OpenCV and Viola-Jones face dete...
Commendatory asked 27/3, 2016 at 10:36

1

Solved

I need to minimize H in following equation: Where H is 3x3 Matrix. Pn is 3x1 matrix (point). Euclidean() gives distance between 2 points. Dn is the actual distance. I have one initial estimate...
Prominence asked 10/2, 2017 at 10:38

2

Solved

I'm trying to modify Dlib's face detection example to save an image with detections to a file since I'm using a server without GUI. So far I have only figured how to save the image but not the over...
Brian asked 21/4, 2015 at 4:13

1

Solved

I am trying to train an object detector using D-lib. I selected close to 100 images for training. I am using the Python environment. As per documentation, I used the Imglab tool to draw the boundin...
Parisian asked 18/8, 2016 at 17:26

2

Solved

I have a colume vector defined in dlib. How can I convert it to std::vector? typedef dlib::matrix<double,0,1> column_vector; column_vector starting_point(4); starting_point = 1,2,3,4; std::v...
Kandrakandy asked 4/8, 2016 at 12:13

4

I am developing app in which I need to get face landmarks points on a cam like mirror cam or makeup cam. I want it to be available for iOS too. Please guide me for a robust solution. I have used Dl...
Fugue asked 18/7, 2016 at 11:32

1

Solved

I am using dlib's face_landmark_detection_ex.cpp which display the detected face image and all face landmarks on the original image. I want to save the original image with all 68 face face landmark...
Waxen asked 16/4, 2016 at 10:24

1

Solved

Dlib C++ can detect landmark and estimate face pose very well. However, how can I get 3D coordinate Axes direction (x,y,z) of head pose?
Senega asked 13/4, 2016 at 6:42

0

I am using dlib for object detection.I am training my own detector using dlib. But when i give more then 1000 images, data is not trained.Process is killed by system.I have searched online but did...
Epic asked 17/2, 2016 at 13:51

2

Solved

Following the instructions to compile dlib using cmake (here) generates a static dlib library: cd examples mkdir build cd build cmake .. cmake --build . --config Release How can I instruct cmake...
Bellman asked 30/11, 2015 at 10:27

1

Solved

Is DLIB a good open source library for developing my own machine learning algorithms in C++? How about other ones, such as libSVM, SHOGUN?
Gamely asked 22/1, 2011 at 19:30

© 2022 - 2024 — McMap. All rights reserved.