Reputation: 353
I'm trying to develop app to make image with full transparency.
Mainly I need it smart selection just like TinyCrayon.
So how can I make similar algorithm to select the selected object?
this image
using selection like this:
Upvotes: 1
Views: 376
Reputation: 5215
You can use openCV library along with grabcut algorithm:
https://docs.opencv.org/3.4.3/d8/d83/tutorial_py_grabcut.html
Upvotes: 2