mirror of
https://github.com/esimov/pigo.git
synced 2025-10-07 00:52:49 +08:00
Renamed data folder to cascade
This commit is contained in:
@@ -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.
|
||||||
|
@@ -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)
|
||||||
}
|
}
|
||||||
|
@@ -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)
|
||||||
}
|
}
|
||||||
|
@@ -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)
|
||||||
}
|
}
|
||||||
|
@@ -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)
|
||||||
}
|
}
|
||||||
|
@@ -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 {
|
||||||
|
Reference in New Issue
Block a user