Skip to content
Snippets Groups Projects

Docs on Anomaly detection based PAD using Aggregated Db + Sparse coding stuff

Merged Olegs NIKISINS requested to merge rebase_branch into master
13 files
+ 1625
1
Compare changes
  • Side-by-side
  • Inline
Files
13
 
#!/usr/bin/env python
 
 
from bob.pad.face.extractor import VideoHistOfSparseCodes
 
 
 
#=======================================================================================
 
# Define instances here:
 
 
METHOD = "mean"
 
extractor_mean = VideoHistOfSparseCodes(method = METHOD)
 
 
 
METHOD = "hist"
 
extractor_hist = VideoHistOfSparseCodes(method = METHOD)
 
 
Loading