Questions tagged [remove.bg]

Questions tagged with [remove.bg] should be related to either interacting with remove.bg programmatically through its API or SDK's, or about how to create a new integration for it.

Remove.bg is a proprietary image background removal product and service developed by Kaleido.AI. It's used to process images in order to remove their backgrounds with transparent ones. Common use cases include the need to later overlay the images on new backgrounds for multiple purposes, or using them on designs and applications.

There are a few ways to interact with remove.bg programmatically:

  1. You can use one of its existing integrations —or submit a new one.
  2. You can directly consume its API.

Kaleido.AI is owned by Canva, and powers its background removal capabilities.

15 questions
4
votes
1 answer

Trouble using NPM package in Laravel application

I've been using Laravel for years, but I've never used NPM packages in my Laravel apps until now. I'm using Laravel Valet as my development environment. I am trying to utilize a simple package that interfaces with the remove.bg js package but I…
Mark
  • 1,255
  • 1
  • 13
  • 25
1
vote
0 answers

Alternative to fs.WriteFileSync for implementation of image parsing in Vanilla Javascript

Hello everyone and thank you for your time in advance! I want to implement the Remove.bg functionality on my Wix web page but unfortunately the necessary functions can not be implemented, specifically, FileSystem.writefilesync. Below is an excerpt…
Krow Caw
  • 37
  • 5
1
vote
1 answer

how to get local image input from user in python?

I am building an auto image background remover website using the remove.bg API. I have the following code: # Requires "requests" to be installed (see python-requests.org) import requests response = requests.post( …
Khan Rehan
  • 11
  • 1
1
vote
1 answer

How can i find area of an object by photo?

I need to find the area of an irregular object, for example, area of this lemon sketch. Here was my algorithm Put a coin nearby measure its radius in pixels, knowing its real radius calculate pixel to mm ratio. somehow remove bg from the…
anonymous
  • 35
  • 1
  • 4
1
vote
1 answer

Removing background from image in React Native

So I currently have an app that allows the user to take a photo. I would like it so that once they've taken the photo of themself, the app will remove the background of the image (like remove.bg) and present it as a transparent PNG. I would use…
J. Doe
  • 63
  • 2
  • 11
1
vote
1 answer

Is it possible to develop an app using the remove.bg API in Flutter?

I got an API called remove.bg . I want to use this API ( provided in python language ) in my Flutter App. Is it even possible? This API uses for removing image background. What are the steps/ research I need to do to get this thing working? Do…
Tuhin
  • 194
  • 4
  • 16
0
votes
0 answers

How to integrate remove.bg api into a react native app?

I'm trying to integrate the remove.bg API into a react native app. However, I'm not sure how to call a node js file from a react native button. Please let me know if I can clarify anything. Thanks for responces! React Native JS Code containing…
0
votes
0 answers

Implement Remove Background API in Android Project using volley

I'm trying to implement the background remover API from remove.bg for my android studio project. The goal is to use a post request by using the path to the image file. Then save the response of the API into a bitmap. I don't have much experience…
alok
  • 1
  • 1
0
votes
1 answer

Parse RemoveBG data results to Inner HTML element (eg. img.src)

I am trying to use the Remove.bg API in a plain JS file, with the goal of passing image URLS as parameters and then outputting the resulting image to an IMG tag within the HTML body. Unfortunately, the project does not provide documentation for such…
Krow Caw
  • 37
  • 5
0
votes
1 answer

Upload picture in selenium without input[type="file=] element

I'm trying to automate the process to upload the pictures on remove.bg but I'm unable to find the input field for the file in inspect elements. I know that by using input and send_keys we can automate this but what should I do in this case when the…
ppxx
  • 177
  • 1
  • 11
0
votes
1 answer

file upload without element in Selenium

I'm trying to automate the process to upload the pictures on remove.bg but I'm unable to find the input field for the file in inspect elements. I know that by using input and send_keys we can automate this but what should I do in this case when the…
ppxx
  • 177
  • 1
  • 11
0
votes
0 answers

Remove.bg api http post return image in flutter

_asyncMethod() async { ByteData bytes = await rootBundle.load('assets/images/technology.jpg'); var buffer = bytes.buffer; var m = base64.encode(Uint8List.view(buffer)); final body = {"image_file_b64": m, "size": "auto"}; final headers =…
farah
  • 1
0
votes
1 answer

Returning response from remove.bg api

I wanted to remove image background using the https://remove.bg api from their documentation since am new to use of curl here is what i have come up with $url = "https://api.remove.bg/v1.0/removebg"; $ch = curl_init(); curl_setopt($ch,…
Stack
  • 11
  • 6
0
votes
2 answers

How to use remove.bg to remove background of photos in Python

I'm trying to use https://www.remove.bg to remove the background of my photos. Here is my code: import requests response = requests.post( 'https://api.remove.bg/v1.0/removebg', files={'image_file':…
shy zhan
  • 35
  • 6