Local Background Remover (Android/IOS)

Overview

The Background Removal Library is a powerful tool designed to seamlessly remove backgrounds from images in both Android and iOS platforms.This library provides developers with an easy-to-use interface to integrate background removal functionality into their mobile applications, enhancing user experience and enabling a wide range of creative possibilities.

If you want to remove objects from your image in Flutter, you can use the Object Remover library.

System requirements

  • iOS: 15+
  • Android: 4.4+ (SDK 19)

Features

  • Offline Support: Remove backgrounds without internet for quick performance offline.
  • Object and Person Detection: Easily remove backgrounds from both objects and people.
  • Cross-Platform: Delete backgrounds on Android and iOS.

Getting started

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

If you only require person detection on iOS,consider using version 0.0.8 to reduce your app's size.

dependencies:
  local_rembg: ^1.1.2

Install the new dependency:

flutter pub get

Call the removeBackground function in your code:

Future<LocalRembgResultModel> removeBackground() async {
  LocalRembgResultModel localRembgResultModel = await LocalRembg.removeBackground(
     imagePath: // Your Image Path ,
     imageUint8List: // Your image Uint8List (only supported on iOS) ,
     cropTheImage: // Crop the segmented image (Default true) ,
  );
  return localRembgResultModel;
}

Example

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

License Terms

This library is provided under the Apache License.

Libraries

local_rembg