Commit ad604b9ce49b32ee23f3dfc859b582b612266d3a

Authored by Josh Klontz
1 parent 4e922685

scripts tweaks

.gitignore
... ... @@ -2,6 +2,7 @@
2 2 build*
3 3 3rdparty/LatentSDK*
4 4 3rdparty/pittpatt*
  5 +scripts/results
5 6  
6 7 ### Generic ###
7 8 *.log
... ...
scripts/trainFaceRecognition-MEDS.sh 0 → 100755
  1 +#!/bin/bash
  2 +if [ ! -f trainFaceRecognition-MEDS.sh ]; then
  3 + echo "Run this script from the scripts folder!"
  4 + exit
  5 +fi
  6 +
  7 +rm -f ../share/openbr/models/algorithms/FaceRecognitionHoG
  8 +
  9 +br -algorithm FaceRecognitionHoG -path ../data/MEDS/img -train ../data/MEDS/sigset/MEDS_frontal_all.xml ../share/openbr/models/algorithms/FaceRecognitionHoG
... ...