Renamed data folder to cascade

This commit is contained in:
esimov
2019-08-09 15:37:41 +03:00
parent f1b1e9e380
commit 9f9c80c9fc
8 changed files with 9 additions and 9 deletions

View File

@@ -174,7 +174,7 @@ $ python2 demo.py
To run the web version: To run the web version:
```bash ```bash
$ go run main.go -cf "../../data/facefinder" $ go run main.go -cf "../../cascade/facefinder"
``` ```
Then access the `http://localhost:8081/cam` url from a web browser. Then access the `http://localhost:8081/cam` url from a web browser.

View File

@@ -13,7 +13,7 @@ var pigoCascadeFile []byte
func init() { func init() {
var err error var err error
pigoCascadeFile, err = ioutil.ReadFile("../data/facefinder") pigoCascadeFile, err = ioutil.ReadFile("../cascade/facefinder")
if err != nil { if err != nil {
log.Fatalf("Error reading the cascade file: %v", err) log.Fatalf("Error reading the cascade file: %v", err)
} }

View File

@@ -10,7 +10,7 @@ import (
"runtime" "runtime"
"unsafe" "unsafe"
"github.com/esimov/pigo/core" pigo "github.com/esimov/pigo/core"
"github.com/esimov/triangle" "github.com/esimov/triangle"
) )
@@ -137,7 +137,7 @@ func (px pixs) clusterDetection(pixels []uint8) []pigo.Detection {
} }
if len(cascade) == 0 { if len(cascade) == 0 {
cascade, err = ioutil.ReadFile("../../data/facefinder") cascade, err = ioutil.ReadFile("../../cascade/facefinder")
if err != nil { if err != nil {
log.Fatalf("Error reading the cascade file: %v", err) log.Fatalf("Error reading the cascade file: %v", err)
} }

View File

@@ -101,7 +101,7 @@ func clusterDetection(pixels []uint8, rows, cols int) []pigo.Detection {
// Ensure that the face detection classifier is loaded only once. // Ensure that the face detection classifier is loaded only once.
if len(cascade) == 0 { if len(cascade) == 0 {
cascade, err = ioutil.ReadFile("../../data/facefinder") cascade, err = ioutil.ReadFile("../../cascade/facefinder")
if err != nil { if err != nil {
log.Fatalf("Error reading the cascade file: %v", err) log.Fatalf("Error reading the cascade file: %v", err)
} }
@@ -117,7 +117,7 @@ func clusterDetection(pixels []uint8, rows, cols int) []pigo.Detection {
// Ensure that we load the pupil localization cascade only once // Ensure that we load the pupil localization cascade only once
if len(puplocCascade) == 0 { if len(puplocCascade) == 0 {
puplocCascade, err := ioutil.ReadFile("../../data/puploc") puplocCascade, err := ioutil.ReadFile("../../cascade/puploc")
if err != nil { if err != nil {
log.Fatalf("Error reading the puploc cascade file: %s", err) log.Fatalf("Error reading the puploc cascade file: %s", err)
} }

View File

@@ -73,7 +73,7 @@ func clusterDetection(pixels []uint8, rows, cols int) []pigo.Detection {
} }
if len(cascade) == 0 { if len(cascade) == 0 {
cascade, err = ioutil.ReadFile("../../data/facefinder") cascade, err = ioutil.ReadFile("../../cascade/facefinder")
if err != nil { if err != nil {
log.Fatalf("Error reading the cascade file: %s", err) log.Fatalf("Error reading the cascade file: %s", err)
} }

View File

@@ -16,7 +16,7 @@ import (
"os" "os"
"os/exec" "os/exec"
"github.com/esimov/pigo/core" pigo "github.com/esimov/pigo/core"
"github.com/fogleman/gg" "github.com/fogleman/gg"
) )
@@ -57,7 +57,7 @@ func main() {
flag.Parse() flag.Parse()
if len(*cascadeFile) == 0 { if len(*cascadeFile) == 0 {
log.Fatal("Usage: go run main.go -cf ../../data/facefinder") log.Fatal("Usage: go run main.go -cf ../../cascade/facefinder")
} }
if *scaleFactor < 1 { if *scaleFactor < 1 {