All Projects → alhazmy13 → Imagefilters

alhazmy13 / Imagefilters

Image Filter is an Android Libary that lets you to Filtering any image

Labels

Projects that are alternatives of or similar to Imagefilters

Voicenet
Speech synthesis platform based on tensorflow and sonnet
Stars: ✭ 60 (-11.76%)
Mutual labels:  makefile
Counter Strike Docker
Docker image for Counter-Strike 1.6 server
Stars: ✭ 63 (-7.35%)
Mutual labels:  makefile
Openwrt Packages Yun
Stars: ✭ 65 (-4.41%)
Mutual labels:  makefile
Documentbuilder
ONLYOFFICE Document Builder is powerful text, spreadsheet, presentation and PDF generating tool
Stars: ✭ 61 (-10.29%)
Mutual labels:  makefile
Reactnative Jwts
Authenticating a React Native app with JSON Web Tokens
Stars: ✭ 62 (-8.82%)
Mutual labels:  makefile
Makebakery
A static website generator built on GNU Make.
Stars: ✭ 64 (-5.88%)
Mutual labels:  makefile
Portfolio
Create a beautiful Portfolio using GitHub pages
Stars: ✭ 59 (-13.24%)
Mutual labels:  makefile
Ocaml Makefile
Easy to use Makefile for small to medium-sized OCaml-projects
Stars: ✭ 67 (-1.47%)
Mutual labels:  makefile
Python Docs Zh Tw
Stars: ✭ 63 (-7.35%)
Mutual labels:  makefile
Example Project
Example Python DS project
Stars: ✭ 65 (-4.41%)
Mutual labels:  makefile
Neuralstyler
Turn Your Videos/photos/Gif into Art
Stars: ✭ 61 (-10.29%)
Mutual labels:  makefile
Ansible In Action
Ansible playbook to deploy your Laravel code base to VPS
Stars: ✭ 61 (-10.29%)
Mutual labels:  makefile
Clourmusic flutter
flutter 仿网易云音乐app
Stars: ✭ 65 (-4.41%)
Mutual labels:  makefile
Buildroot
Buildroot fork with some customizations for RPi and BBB
Stars: ✭ 60 (-11.76%)
Mutual labels:  makefile
Ngrok K8s
Using ngrok to expose k8s services
Stars: ✭ 66 (-2.94%)
Mutual labels:  makefile
Yolo
Kill a random process
Stars: ✭ 59 (-13.24%)
Mutual labels:  makefile
Openvoiceos
OpenVoiceOS is a minimalistic linux OS bringing the open source voice assistant Mycroft A.I. to embbeded, low-spec headless and/or small (touch)screen devices.
Stars: ✭ 64 (-5.88%)
Mutual labels:  makefile
Cpython Emscripten
Python in the browser - CPython compiled with emscripten
Stars: ✭ 68 (+0%)
Mutual labels:  makefile
Telephony
The telephony packages feed
Stars: ✭ 66 (-2.94%)
Mutual labels:  makefile
Curl Docker
official docker image for curl
Stars: ✭ 64 (-5.88%)
Mutual labels:  makefile

Image Filters


Image Filter is an Android Libary that lets you to Filtering any image. You can report any issue on issues page. Note: If you speak Arabic, you can submit issues with Arabic language and I will check them. :)

Installation


Maven

<dependency>
<groupId>net.alhazmy13.ImageFilters</groupId>
<artifactId>library</artifactId>
<version>0.1.2-beta</version>
</dependency>

Gradle

dependencies {
	compile 'net.alhazmy13.ImageFilters:library:0.1.2-beta'
}

Usage


All you need is to pass a Bitmap obejct and the filter type

       ImageFilter.applyFilter(bitmap, ImageFilter.Filter.GOTHAM);

Filter types

Gray

```java ImageFilter.applyFilter(bitmap, ImageFilter.Filter.GRAY); ```

Relief

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.RELIEF);

Average blur

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.AVERAGE_BLUR,BLUR_SIZE);

OIL

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.OIL);

NEON

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.NEON,COLOR_R,COLOR_G,COLOR_B);

Pixelate

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.PIXELATE,PIXEL_SIZE);

TV

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.TV);

Invert Color

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.INVERT);

Block

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.BLOCK);

Old

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.OLD);

Sharpen

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.SHARPEN);

Light

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.LIGHT,CENTER_X,CENTER_Y,RADIUS);

Lomo

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.LOMO);

HDR

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.HDR);

Gaussian Blur

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.GAUSSIAN_BLUR,SIGMA);

Soft Glow

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.SOFT_GLOW);

Sketch

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.SKETCH);

Motion Blur

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.MOTION_BLUR,X,Y);

Gotham

ImageFilter.applyFilter(bitmap, ImageFilter.Filter.GOTHAM);

Credits

License


Copyright 2015 alhazmy

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].