Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chai2010/libfacedetection-go

libfacedetection binding for Go
https://github.com/chai2010/libfacedetection-go

cnn face-detection go golang

Last synced: 2 days ago
JSON representation

libfacedetection binding for Go

Awesome Lists containing this project

README

        

- *Go语言QQ群: 102319854, 1055927514*
- *凹语言(凹读音“Wa”)(The Wa Programming Language): https://github.com/wa-lang/wa*

----

# [libfacedetection](https://github.com/ShiqiYu/libfacedetection) binding for Go

- https://godoc.org/github.com/chai2010/libfacedetection-go
- https://github.com/ShiqiYu/libfacedetection

## Example ([hello.go](hello.go))

```go
package main

import (
"github.com/chai2010/libfacedetection-go"
)

func main() {
m := GetImage("./libfacedetection/images/keliamoniz2.jpg")
rgb, w, h := libfacedetection.NewRGBImageFrom(m)

faces := libfacedetection.DetectFaceRGB(rgb, w, h, w*3)
fmt.Printf("%#v\n", faces)
}

// output:
// []libfacedetection.Face{
// libfacedetection.Face{X:183, Y:137, W:150, H:150, Neighbors:94, Angle:0}
// }
```

![](keliamoniz2.out.png)