Skip to content

Object Remover, A Flutter plugin for offline object removal from images (IOS).

License

Notifications You must be signed in to change notification settings

IIAmir/object_remover

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Object Remover (IOS)

Overview

Object Remover is a powerful image processing library designed specifically for iOS devices. It provides developers with an intuitive interface to seamlessly remove objects from images, enhancing user experience and enabling a wide range of creative possibilities.

System requirements

  • iOS: 15+

Features

  • Offline Support: Remove Objects without internet for quick performance offline.
  • Remove Object and Person: Easily remove object and person from both objects and people.

Getting started

Add the plugin package to the pubspec.yaml file in your project:

dependencies:
  object_remover: ^0.0.1

Install the new dependency:

flutter pub get

Call the removeObject function in your code:

Future<ObjectRemoverResultModel> removeObject() async {
  ObjectRemoverResultModel objectRemoverResultModel = await ObjectRemover.removeObject(
      defaultImageUint: // Provide original image data ,
      maskedImageUint: // Provide mask image data ,
  );
  return objectRemoverResultModel;
}

Example

Explore our Example Project to see how the Object Remover SDK can be used in a Flutter application.

License Terms

This library is provided under the Apache License.