Is there a free tool that's good at extracting objects from photos?
It has to work on linux
For instance, extracting a person from a photograph.
|
Is there a free tool that's good at extracting objects from photos? It has to work on linux For instance, extracting a person from a photograph.
| |||||
feedback
|
|
Using imagemagick, you can use a mask, edge detection, or a combination of the two techniques to cut shapes out of an image. The mask example in particular is very powerful if you have a picture with a known background. The add texture to image example shows how to create a mask of a complex photo as part of the process, but it would work on a person also. On a photo of a pagoda, the command:
creates
Which you can then use to cut the out everything that's not background in this case from the image. There are no perfect tools, free or no, that perform this task automatically on all images. | ||||
|
feedback
|
|
Computer vision is a research area and a Hard Problem. I don't think you should expect to find free software that will do a good job of it. | |||
feedback
|
|
It's overkill (a full application as opposed to a tool), but you can do this with GIMP. The basic tutorials are here and you can certainly make a script that will speed the process up. | |||
|
feedback
|