advanced_image_processing_toolkit 0.0.6 copy "advanced_image_processing_toolkit: ^0.0.6" to clipboard
advanced_image_processing_toolkit: ^0.0.6 copied to clipboard

A comprehensive Flutter plugin for advanced image processing, featuring real-time filters, object recognition, and AR capabilities.

Advanced Image Processing Toolkit #

Pub Version License: MIT Flutter

A powerful Flutter plugin that provides advanced image processing capabilities, including real-time filters, object recognition, and augmented reality features.

Getting StartedFeaturesInstallationUsageDocumentation

Features #

  • 🎨 Real-time Image Filters

    • Grayscale conversion
    • Gaussian blur
    • Brightness adjustment
    • Contrast enhancement
    • Custom filter support
  • 🔍 Object Detection & Recognition

    • Real-time object detection
    • Multiple object recognition
    • Confidence score reporting
    • Custom model integration
  • 🎮 Augmented Reality

    • 3D model placement
    • AR session management
    • Surface detection
    • Real-world scale adjustment
  • 💪 Performance Optimized

    • Hardware acceleration
    • Memory efficient
    • Optimized for mobile devices

Installation #

Add this to your package's pubspec.yaml file:

dependencies:
advanced_image_processing_toolkit: ^0.0.6

Then run:

flutter pub get
import 'pac kage:advanced_image_processing_toolkit/advanced_image_processing_toolkit.dart';
// Initialize the processor
final processor = ImageProcessor();
// Apply a filter
final processedImage = await processor.applyFilter(
image: sourceImage,
filter: Filter.grayscale,
);

Object Detection #

// Initialize detector
final detector = ObjectDetector();
// Detect objects
final detections = await detector.detectObjects(image);
for (var detection in detections) {
print('Found ${detection.label} with confidence ${detection.confidence}');
}

Documentation #

Documentation #

For detailed documentation and examples, visit our Wiki.

Platform Support #

Platform Support
Android
iOS
Web 🚧
Desktop 🚧

Requirements #

  • Flutter SDK: >=2.12.0
  • Dart: >=2.12.0
  • iOS: 11.0 or newer
  • Android: API level 21 or newer

Contributing #

Contributions are always welcome! Please read our Contributing Guidelines first.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License #

This project is licensed under the MIT License - see the LICENSE file for details.

Author #

Godfrey Lebo

Support #

If you find this package helpful, please consider:

  • ⭐ Starring the repository on GitHub
  • 🐛 Reporting issues you find
  • 📖 Contributing to the documentation
  • 🤝 Submitting pull requests

For questions and support, please open an issue on GitHub.


Made with ❤️ by Curiosityxploring
4
likes
0
points
146
downloads

Publisher

unverified uploader

Weekly Downloads

A comprehensive Flutter plugin for advanced image processing, featuring real-time filters, object recognition, and AR capabilities.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (license)

Dependencies

arcore_flutter_plugin, arkit_plugin, camera, flutter, google_ml_kit, image, image_picker, logging, plugin_platform_interface

More

Packages that depend on advanced_image_processing_toolkit

Packages that implement advanced_image_processing_toolkit