https://github.com/koyachi/go-nude
Nudity detection with Go.
https://github.com/koyachi/go-nude
Last synced: 8 months 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 11 years ago)
- Default Branch: master
- Last Pushed: 2023-10-11T16:51:03.000Z (about 2 years ago)
- Last Synced: 2024-10-25T05:22:48.224Z (about 1 year ago)
- Language: Go
- Size: 592 KB
- Stars: 413
- Watchers: 18
- Forks: 52
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-go-cn - go-nude - nude) (图片 / 检索及分析资料库)
- awesome-go - go-nude - Nudity detection with Go. (Images / Search and Analytic Databases)
- awesome-go-plus - go-nude - Nudity detection with Go.  (Images / Search and Analytic Databases)
- awesome-go - go-nude - Nudity detection with Go. (Images / Search and Analytic Databases)
- awesome-go - go-nude - Nudity detection with Go. (Images / Advanced Console UIs)
- awesome-go - go-nude - Nudity detection with Go. - ★ 268 (Images)
- awesome-go-cn - go-nude - nude) (图片 / 检索及分析资料库)
- fucking-awesome-go - :octocat: go-nude - Nudity detection with Go. :star: 183 :fork_and_knife: 20 (Images / Advanced Console UIs)
- awesome-go - koyachi/go-nude
- awesome-go - go-nude - | - | - | (Images / Advanced Console UIs)
- awesome-go - go-nude - Nudity detection with Go. - :arrow_down:6 - :star:188 (Images / Advanced Console UIs)
- awesome-go-cn - go-nude
- fucking-awesome-go - go-nude - Nudity detection with Go. (Images / Search and Analytic Databases)
- awesome-go-extra - go-nude - 05-02T08:32:29Z|2022-04-18T04:02:28Z| (Images / Advanced Console UIs)
- awesome-go-zh - go-nude
- awesome-go - go-nude - Nudity detection with Go. (Images / Search and Analytic Databases)
- awesome-go - go-nude - Nudity detection with Go. (<span id="图片-images">图片 Images</span> / <span id="高级控制台用户界面-advanced-console-uis">高级控制台用户界面 Advanced Console UIs</span>)
- awesome-go-with-stars - go-nude - Nudity detection with Go. (Images / Search and Analytic Databases)
- awesome-go - go-nude - Nudity detection with Go. (Images / Search and Analytic Databases)
- awesome-go - go-nude - Nudity detection with Go. (Images / Search and Analytic Databases)
- awesome-Char - go-nude - Nudity detection with Go. (Images / Advanced Console UIs)
- awesome-go - go-nude - Nudity detection with Go. (Images / Advanced Console UIs)
- awesome-go-cn - go-nude
README
# go-nude
Nudity detection with Go.
(Go porting from https://github.com/pa7/nude.js)
## Example
```go
package main
import (
"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