Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koyachi/Go-nude
Nudity detection with Go.
https://github.com/koyachi/Go-nude
Last synced: 20 days ago
JSON representation
Nudity detection with Go.
- Host: GitHub
- URL: https://github.com/koyachi/Go-nude
- Owner: koyachi
- License: mit
- Created: 2014-05-02T08:32:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-10-11T16:51:03.000Z (about 1 year ago)
- Last Synced: 2024-07-31T01:25:50.245Z (4 months ago)
- Language: Go
- Size: 592 KB
- Stars: 409
- Watchers: 18
- Forks: 52
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# go-nude
Nudity detection with Go.
(Go porting from https://github.com/pa7/nude.js)
## Example
```go
package mainimport (
"fmt"
"log"
"github.com/koyachi/go-nude"
)func main() {
imagePath := "images/test2.jpg"isNude, err := nude.IsNude(imagePath)
if err != nil {
log.Fatal(err)
}
fmt.Printf("isNude = %v\n", isNude)
}```
## Other implementations
- [nude.js](http://www.patrick-wied.at/static/nudejs/)
- [nude.rb](https://github.com/mitukiii/nude.rb)
- [nude.py](https://github.com/hhatto/nude.py)## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request