Awesome Go

go-nude

CategoryImages
SubcategoryImages
Stars0

Nudity detection with Go

About go-nude

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

Frequently Asked Questions

What is go-nude?

go-nude is a Images library for the Go programming language. Nudity detection with Go

How do I install go-nude?

Install go-nude with the Go module system using `go get koyachi/go-nude`. Check the repository for the current installation instructions.

What category does go-nude belong to?

go-nude is listed under Images, specifically Images.

← Back to Images