Skip to content Skip to sidebar Skip to footer

How To Apply All Instagram Photo Effects In Android

Hi Guys I am developing a similar app like Instagram, tumbler, Filker etc. But I stuck in photo effects actually I need photo effects like Instagram. I generated some new effects b

Solution 1:

Instagram actually acquired a company to enhance its photo and video filters,for which this app is so famous. So this should give you an idea on how elaborated is their concept.

However there is a library OpenCV. This is by far the most efficient opensource library for image/video processing. It is also used in advanced robotics and AI projects.

It also has a JAVA wrapper called JavaCV. Actually, OpenCV is written in C, and JavaCv is a java wrapper for it.

This could be your solution. But again, this library does not have direct functions implemented for a specific effect. You need to use its basic functions to manipulate your image/video. It will involve some RnD for sure, but I guess the effort will be worth it.

Other than this(OpenCv/JavaCv), you may find some libraries on GitHub to serve your need.These libraries may provide you with direct functions like, toSepia(bitmap) etc, but your app's image filters will be limited to scope of the Library you choose.

Hope this helps!

Post a Comment for "How To Apply All Instagram Photo Effects In Android"