FLUTTER ECOSYSTEM

piekarskipiotr/flutter-nude-detector

Pacote de detecção de nudez do Flutter.

Capa do projeto flutter-nude-detector
Stars
4
Forks
4
Último push (UTC)
3 de nov. de 2023
Status do projeto
Arquivado
Piotr Piekarski GitHub avatar
GITHUB User

Piotr Piekarski ↗

I build mobile apps 🤓💙

Poland
LinguagensDartRubySwiftKotlinObjective-C

Tópicos técnicos

Dependências usadas

Lista de dependências 7 itens

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher README

flutter_nude_detector

style: very good analysis Powered by Mason License: MIT

An easy-to-use nudity detector build with google_mlkit_image_labeling package and using a pre-build .tflite model by nipunru from nsfw-detector-android repository.

Installation

Add package to your flutter project

flutter pub add flutter_nude_detector

Download .tflite model and save it in:

project/
    assets/
        ml_models/
            nude.tflite

Modify pubspec.yaml file

flutter:
  assets:
    - assets/ml_models/

Now you are ready to use the package 🎉

🧑🏻‍💻 Usage
final hasNudity = await FlutterNudeDetector.detect(path: imagePath);
Function properties — hasNudity
Property name Type Description
path String required argument
threshold double optional argument, default value is set to 0.7
modelAssetsPath String optional argument, default value is set to assets/ml_models/nude.tflite