Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.pad.face
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.pad.face
Merge requests
!55
Removes Video Extractors, which can be replaced with bob.bio.video Wrapper
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Removes Video Extractors, which can be replaced with bob.bio.video Wrapper
remove_video_extract
into
master
Overview
0
Commits
2
Pipelines
1
Changes
14
Merged
Olegs NIKISINS
requested to merge
remove_video_extract
into
master
7 years ago
Overview
0
Commits
2
Pipelines
1
Changes
14
Expand
Closes
#9 (closed)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
fe75207f
2 commits,
7 years ago
14 files
+
50
−
317
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
bob/pad/face/config/extractor/video_lbp_histogram.py
+
5
−
3
Options
#!/usr/bin/env python
from
bob.pad.face.extractor
import
VideoLBPHistogram
from
bob.pad.face.extractor
import
LBPHistogram
from
bob.bio.video.extractor
import
Wrapper
#=======================================================================================
# Define instances here:
@@ -12,10 +14,10 @@ neighbors = 8
circ
=
False
dtype
=
None
video_lbp_histogram_extractor_n8r1_uniform
=
Video
LBPHistogram
(
video_lbp_histogram_extractor_n8r1_uniform
=
Wrapper
(
LBPHistogram
(
lbptype
=
lbptype
,
elbptype
=
elbptype
,
rad
=
rad
,
neighbors
=
neighbors
,
circ
=
circ
,
dtype
=
dtype
)
dtype
=
dtype
)
)
Loading