Mobile app version of vmapp.org
Login or Join
Vandalay110

: How can I achieve this cartoon effect? I'm a programmer doing a client project, and I'm trying to write an app that will do this effect to user-uploaded images. I think it's some combination

@Vandalay110

Posted in: #AdobePhotoshop #Filter

I'm a programmer doing a client project, and I'm trying to write an app that will do this effect to user-uploaded images. I think it's some combination of Find edges, Blur and some other filters, but I'm not sure. Anyone have any ideas?

Original:



Result:

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Vandalay110

2 Comments

Sorted by latest first Latest Oldest Best

 

@Heady304

To be able to script a user uploaded image to add an effect we may want to have a look at command line scriptable tools rather than a full blown image editing soft.

A quite versatile command line processing tools is ImageMagick which also comes with a variety of artistic filters we can combine for impressive effects.

Below example was quickly created using the -paint option:

convert <infile> -paint 6 <outfile>




ImageMagick is a free Open Source software available for (almost) all platforms.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme