piekarskipiotr/flutter-nude-detector
Flutter न्यूड डिटेक्टर पैकेज।
GitHub पर देखें ↗आर्काइव
- Stars
- 4
- Forks
- 4
- अंतिम पुश (UTC)
- 3 नव॰ 2023
- प्रोजेक्ट स्थिति
- आर्काइव
भाषाएँDartRubySwiftKotlinObjective-C
तकनीकी विषय
उपयोग की गई निर्भरताएँ
निर्भरता सूची 7 आइटम
- flutter
{"sdk":"flutter"} - google_mlkit_image_labeling
>=0.5.0 <0.10.0 - path
^1.8.2 - path_provider
^2.0.14 - flutter_testडेवलपमेंट
{"sdk":"flutter"} - mocktailडेवलपमेंट
>=0.3.0 <2.0.0 - very_good_analysisडेवलपमेंट
>=3.1.0 <6.0.0
मूल README
यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
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 |