Questions tagged [menpo]

Menpo is a statistical modelling toolkit, providing all the tools required to build, fit, visualize, and test deformable models like Active Appearance Models, Constrained Local Models and Supervised Descent Method.

Menpo is a statistical modelling toolkit, providing all the tools required to build, fit, visualize, and test deformable models like Active Appearance Models, Constrained Local Models and Supervised Descent Method.

Menpo is written in Python and provides a simple and easy method of installation using Conda.

See:

12 questions
4
votes
1 answer

Failed to run Python script with Conda

I tried to install menpo like in this tutorial. After that I installed menpofit, menpo3d and menpodetect: conda install -c menpo menpofit conda install -c menpo menpo3d conda install -c menpo menpodetect Next I ran this python script from…
konstantin_doncov
  • 2,725
  • 4
  • 40
  • 100
3
votes
1 answer

How to install OpenCV3 in Anaconda3 offline?

I tried to install OpenCV for Python-3.5 in Anaconda using the following command conda install -c https://conda.binstar.org/menpo opencv3 This is taking a really long time to download the file. It seems like my download accelerator is much better…
Ébe Isaac
  • 11,563
  • 17
  • 64
  • 97
3
votes
1 answer

Building an active appearence model using the menpo API in python

Is there any good tutorial explaining how can an Active Appearence Model can be implemented using the Menpo API in python ? I was unable to find one at the menpo website: http://www.menpo.org/
asterix
  • 191
  • 2
  • 13
1
vote
1 answer

Import Error on conda even directory exists

Environment info: Anaconda, windows7x64, py3.5 I setup a virtual env named as menpo to run menpoproject. For a long time I was using load_dlib_frontal_face_detector smoothly. After tinkering with a pip-install dlib command accidentally on virtualenv…
colt.exe
  • 708
  • 8
  • 24
1
vote
1 answer

Menpofit dlib: UnsatisfiableError during installation on Windows 10 using conda

I have been trying to install menpofit on a clean installation of anaconda for a while now. I have followed the instructions on the menpo project website for Windows, but I get the following error when I try to install menpofit using conda install…
1
vote
0 answers

Building Shape Model

I am trying to build Statistical Shape Model(I want to start with Statistical Shape Model and then I will try to build Active Shape Model and Active Appearance Model). So I implemented two classes, first for Generalized Procrustes Analysis(Python…
1
vote
1 answer

python script and libGLEW related error (menpo.io API)

I am writing a python script in Ubuntu 14.04 that imports the menpo.io (API for deformable models) that results in the following error: Traceback (most recent call last): File "/home/Dropbox/pyFaceDepression/AAM_Menpo_final.py", line 1, in…
obelix
  • 880
  • 2
  • 16
  • 43
0
votes
0 answers

How to reconstruct 3d head from shape/position/geometry maps using python/ pytorch3d/menpo/menpo3d?

I have a generic 3d model containing different parts of the head (in .obj format). From the obj file, I extracted just the front face part like the figure shown below (by deleting other parts of the head from obj file). Using the UV unwrapping…
Suvidha
  • 429
  • 1
  • 6
  • 17
0
votes
2 answers

Conda package finds conflicts on newly created env and fails to show them

I tried to install menpodetect after creating a new env in Anaconda conda create --name detector conda activate detector conda install -c menpo menpodetect Anaconda cloud: https://anaconda.org/menpo/menpodetect This is the output of conda install…
zcb
  • 87
  • 1
  • 13
0
votes
1 answer

Can't get menpo to display images in Pycharm

My code so far: import menpo.io as mio bb = mio.import_builtin_asset.breakingbad_jpg() bb.view() I was just trying to play around with menpo. But it seems that I can't even figure out how to display the builtin asset (breakingbad.jpg). I installed…
smellyfish
  • 43
  • 1
  • 5
0
votes
1 answer

Run Menpo and Menpofit with PyCharm

I trying to explore Menpo and Menpofit with PyCharm IDE. I have installed required packages but I have some issue: from .fastpwa import CLookupPWA; ImportError: cannot import name 'CLookupPWA' from .normals import compute_normals; ImportError: No…
konstantin_doncov
  • 2,725
  • 4
  • 40
  • 100
0
votes
0 answers

Weka SMOreg and LIBSVM with linear kernel problems

I want to test a dataset in weka using either LIBSVM with an e-SVR or SMOreg for regression. I also choose a linear kernel in both (in SMOreg i use an exponent=1 in a non normalized polykernel). After cross-validation the root mean squared error…
obelix
  • 880
  • 2
  • 16
  • 43