Mobile app version of vmapp.org
Login or Join
Ogunnowo857

: Is there a way to make the background of an image transparent? Like explained here: Making the background of an image transparent in Gimp But via CLI! I'm using Gimp on Ubuntu, and I would

@Ogunnowo857

Posted in: #BackgroundRemoval #Gimp #Script

Like explained here:
Making the background of an image transparent in Gimp

But via CLI!
I'm using Gimp on Ubuntu, and I would like to do this on a bunch of images..
Even if it doesn't do a perfect work obviously..

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Ogunnowo857

2 Comments

Sorted by latest first Latest Oldest Best

 

@Sent7350415

Gimp is likely overkill (and is a pain to work with for batch...). Although ImageMagick has no color-to-alpha operation, someone came up with a "formula" that works very well:

convert in.png ( -clone 0 -fill "#55f883" -colorize 100 ) ( -clone 0,1 -compose difference -composite -separate +channel -evaluate-sequence max -auto-level ) -delete 1 -alpha off -compose over -compose copy_opacity -composite out.png


Where #55f883 is your background color. Replace convert with magick convert in recent versions.

ImageMagick is the imagemagick package in your distro.

10% popularity Vote Up Vote Down


 

@Cody3331749

The problem of removing the backgrounds and leaving the essential objects intact automatically or with a couple of clicks is still unsolved. Surely there are propellerheads who have done serious math and programming efforts to find something useful to help the background removal, but the best semiautomatic tools still are the selection tools, which select uniformly enough colored areas or follow an edge which is pointed coarsely with the mouse cursor.

So, if these tools + fully manual erasing and clipping path drawing are not enough, you are out of luck. The REAL magic wand still waits its inventor.

ADD due the comment:

If one knows before taking the photos that the backgrounds must be removed, he takes the photos in front of uniform backgrounds - your green screen behind the target is a common solution. If the target gets all light from white lamps, nothing from the single color background and the background color is nonexistent in the target, then the background removal can be automated. That's done in movie editing software which must process hundreds of images in seconds. Surely it's also programmed as scripts for photo editing software, but I have not such script.

In GIMP there's a tool which changes a selected color to transparency. It's Colour to alpha. For good result the selected color must be fully saturated.

I have taken hundreds of photos and removed their backgrounds in the following way for printed catalogs:

Take 2 photos keeping all absolutely in the same place (=a sturdy camera stand, timed shooting). The first photo has all lights on, the second photo has only uniformly lighted bright background, but the target is in the dark.

The black silhouette and white background have high contrast. One click with the magic wand selects the background easily. The selection is used to delete the background in the full light image, which is placed into another layer.

The 2 photo method does not work for alive targets, but it is not dependent on target colors and can be easily done with modern large led panels which are the background; one is needed also under the target.

The black silhouette needs often some minor tweaks, so this method isn't easily automatized.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme