diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-12-17 20:20:04 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-12-17 20:20:04 +0100 |
| commit | 6626e3086ca9c5ce2317f437aae94afacd6f1360 (patch) | |
| tree | b6a35419eacd6f3853f1042a9c2ceb234bada0d6 /megapixels/app/settings/app_cfg.py | |
| parent | e67871d26f2e73861187e86110e240dd7718ea51 (diff) | |
| parent | c7e73f613fc5189c0adeda9fd693cb6aca3d4247 (diff) | |
Merge branch 'master' of github.com:adamhrv/megapixels_dev
Diffstat (limited to 'megapixels/app/settings/app_cfg.py')
| -rw-r--r-- | megapixels/app/settings/app_cfg.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/megapixels/app/settings/app_cfg.py b/megapixels/app/settings/app_cfg.py index 50eaf576..0c28b315 100644 --- a/megapixels/app/settings/app_cfg.py +++ b/megapixels/app/settings/app_cfg.py @@ -75,6 +75,7 @@ DIR_COMMANDS_DATASETS = 'commands/datasets' DIR_COMMANDS_FAISS = 'commands/faiss' DIR_COMMANDS_MISC = 'commands/misc' DIR_COMMANDS_SITE = 'commands/site' +DIR_COMMANDS_DEMO = 'commands/demo' # ----------------------------------------------------------------------------- # Filesystem settings @@ -86,9 +87,16 @@ CKPT_ZERO_PADDING = 9 HASH_TREE_DEPTH = 3 HASH_BRANCH_SIZE = 3 -DLIB_FACEREC_JITTERS = 5 # number of face recognition jitters +DLIB_FACEREC_JITTERS = 25 # number of face recognition jitters DLIB_FACEREC_PADDING = 0.25 # default dlib +POSE_MINMAX_YAW = (-25,25) +POSE_MINMAX_ROLL = (-15,15) +POSE_MINMAX_PITCH = (-10,10) + +POSE_MINMAX_YAW = (-40,40) +POSE_MINMAX_ROLL = (-35,35) +POSE_MINMAX_PITCH = (-25,25) # ----------------------------------------------------------------------------- # Logging options exposed for custom click Params # ----------------------------------------------------------------------------- |
