Popularity
6.3
Stable
Activity
0.0
Stable
397
18
51

Programming language: Go
License: MIT License
Tags: Images    
Latest version: v0.0.1

go-nude alternatives and similar packages

Based on the "Images" category.
Alternatively, view go-nude alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of go-nude or a related project?

Add another 'Images' Package

README

go-nude

Nudity detection with Go.

(Go porting from https://github.com/pa7/nude.js)

Example

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

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