Thursday, November 14, 2013

Android Image Filters

Android Image Filters

Introduction

Image Filter allows you to add various effects on image. There are mainly two purpose of Image Processing:
  1. Image Understanding: It is used to identify content of image, weather image has human faces, objects (bus, train, etc.), measure dimension of objects,etc. OpenCV(Open Source Computer Vision Library) is one of the main library used for Image Understanding.
  2. Image Beautify : It is used to beautify image by adding different filters, adjust colour, adjust contrast, etc..
Android provides two options for Image Filters/Processing
  1. Using SDK with Java Code,Android SDK has “android.graphics” package which contains classes related to Image Processing.
  2. Using NDK with C/C++ Code.

No comments:

Post a Comment