Questions tagged [dlib-python]

A Python interface allowing training and detecting objects from Python scripts using the dlib library.

A Python interface allowing training and detecting objects from Python scripts using the dlib library. http://dlib.net/

10 questions
3
votes
2 answers

Dlib cropped images are blue

I am using D-lib to extract certain areas of a face. I am using opencv to crop the areas detected using dlib landmarking points detector. However, the cropped images are blue in colour. Any idea on why the change? And also I am finding some of the…
Praveen
  • 174
  • 15
2
votes
0 answers

python serverless not being deployed

I am trying to deploy an app created with the serverless framework. However, due to adding some packages that I need, the whole thing breaks. This is my…
2
votes
1 answer

dlib cnn python, is there any way or wrapper for python to do cnn based object training

I'm working on object detection using dlib, I was going through python implementation. I tested couple of examples from dlib python examples, specially i worked on train_object_detector.py. this works well. Now I would like to train same data model…
bommina
  • 307
  • 4
  • 16
1
vote
1 answer

Python multi-version error _ZN5boost6python6detail11init_moduleER11PyModuleDefPFvvE

I have an error when running app with python3.5 Traceback (most recent call last): File…
Microfarad
  • 13
  • 4
1
vote
1 answer

Training D-lib images

I am using D-lib library to use ocular recognition. So I am planning to train my own classifier using the options given in the documentation. I am using Python as a language platform when compared to C++. So, I have created the two .xml files…
Praveen
  • 174
  • 15
1
vote
1 answer

D-lib object detector training

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 bounding boxes across the images. Every image is almost…
Praveen
  • 174
  • 15
1
vote
1 answer

Why is dlib so slow finding an object?

I'm testing some stuff with Dlib and I selected rectangles around instances of an object I want to recognize, using the compiled tool included in tools/imglab/build/imglab. With this xml file describing a few different views of the object I want to…
NoBugs
  • 9,310
  • 13
  • 80
  • 146
0
votes
0 answers

pyarmor ImportError: libpython3.9.so.1.0: cannot open shared object file: No such file or directory

I'm using pyarmor 8.1.2 on my conda environment. It works as expected on this environment. I built a docker image of the obfuscated python scripts and started a custom job on GCP's vertex AI. Here's the docker file: FROM…
Ni43
  • 1
  • 1
0
votes
0 answers

How to fix the error "[6750] Error loading Python lib" and "dlopen: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.35' not found"

This question is more about an error message. I've been trying to install a software called protostar using curl -L https://raw.githubusercontent.com/software-mansion/protostar/master/install.sh | bash Installation went well, but then when running…
Marlo
  • 207
  • 1
  • 4
  • 12
0
votes
1 answer

Bounding boxes returned without detected face image in dlib python

I'm trying to detect multiple faces in a picture using the deepface library with dlib as the backend detector. I'm using the DlibWrapper.py from the deeepface library and i have the following issue: In some cases, the detector returns the bounding…