Skip to content

Soniclev/install-openface-debian9

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

This description in Russian

How to install openface on Debian 9 32bit?

With these scripts your can quickly install the openface on Debian 9 32bit with all needed dependencies without "head pain".

List of patches:

  1. Restore model loading on 32bit/x86 system.
was now file
net = torch.load(opt.model) net = torch.load(opt.model, \'b64\') openface_server.lua
  1. By default, the openface will double size of image when search faces. It is for searching faces with size bigger than 40x40 pixels, because dlib has minimal size - 80x80 pixels. However, faces few than 80x80 pixels are bad for face representating (computing vector with 128 dimension), increase memory usage and time for run. That is why this patch remove this 'hack'.
was now file
return self.detector(rgbImg, 1) return self.detector(rgbImg, 0) align_dlib.py

About

Easy install openface on Debian 9 32bit

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages