All Projects → wasabeef → Fresco Processors

wasabeef / Fresco Processors

Licence: apache-2.0
An Android image processor library providing a variety of image transformations for Fresco.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Fresco Processors

Pyspm
Python library to handle Scanning Probe Microscopy Images. Can read nanoscan .xml data, Bruker AFM images, Nanonis SXM files as well as iontof images(ITA, ITM and ITS).
Stars: ✭ 25 (-97.17%)
Mutual labels:  image-processing
Sv Images
Image manipulation library with an HTTP based API.
Stars: ✭ 7 (-99.21%)
Mutual labels:  image-processing
Pymatting
A Python library for alpha matting
Stars: ✭ 860 (-2.71%)
Mutual labels:  image-processing
Sickzil Machine
Manga/Comics Translation Helper Tool
Stars: ✭ 934 (+5.66%)
Mutual labels:  image-processing
Imagescout
A Swift implementation of fastimage. Supports PNG, GIF, and JPEG.
Stars: ✭ 940 (+6.33%)
Mutual labels:  image-processing
Grafika
An image processing library for PHP
Stars: ✭ 838 (-5.2%)
Mutual labels:  image-processing
Logorain Ascii Art
Logorain-ASCII-Art: A simple Image to ASCII Art converter
Stars: ✭ 24 (-97.29%)
Mutual labels:  image-processing
Playpixels
Swift Playground Book for learning image processing.
Stars: ✭ 14 (-98.42%)
Mutual labels:  image-processing
Giin
Graph-based Image Inpainting
Stars: ✭ 7 (-99.21%)
Mutual labels:  image-processing
Compositor Api
Compositor is a lightweight utility API for compositing images quickly and efficiently in Unity.
Stars: ✭ 9 (-98.98%)
Mutual labels:  image-processing
Dockerfile Libvips
🌄 All libvips dependencies & libvips built from source
Stars: ✭ 26 (-97.06%)
Mutual labels:  image-processing
Segmentation
Catalyst.Segmentation
Stars: ✭ 27 (-96.95%)
Mutual labels:  image-processing
Cometa
Super fast, on-demand and on-the-fly, image processing.
Stars: ✭ 8 (-99.1%)
Mutual labels:  image-processing
Xdog Filter
Edge Detection with XDoG Filter
Stars: ✭ 26 (-97.06%)
Mutual labels:  image-processing
Spark Edge Detection
Edge detection in Spark AR
Stars: ✭ 13 (-98.53%)
Mutual labels:  image-processing
Python Compare Images
This repository is mainly about comparing two images. The technique used is SSIM. i.e. Structural Similarity Index Measure We use some of the inbuilt functions available in python's skimage library to measure the SSIM value. Along with SSIM we also measure the MSE ( Mean Square Error ) To know more about the SSIM technique Refer Here: https://en.wikipedia.org/wiki/Structural_similarity
Stars: ✭ 25 (-97.17%)
Mutual labels:  image-processing
Finite Transform Library
Fast transforms over finite fields
Stars: ✭ 7 (-99.21%)
Mutual labels:  image-processing
Handy Image Processor
A handy Image Processor for NodeJS. 📷📷📷
Stars: ✭ 14 (-98.42%)
Mutual labels:  image-processing
St Cgan
Dataset and Code for our CVPR'18 paper ST-CGAN: "Stacked Conditional Generative Adversarial Networks for Jointly Learning Shadow Detection and Shadow Removal"
Stars: ✭ 13 (-98.53%)
Mutual labels:  image-processing
Image Actions
A Github Action that automatically compresses JPEGs, PNGs and WebPs in Pull Requests.
Stars: ✭ 844 (-4.52%)
Mutual labels:  image-processing

DEPRECATED

Fresco Processors is deprecated. No more development will be taking place. For an up-to-date version, please use Transformers. Thanks for all your support!


Fresco Processors

License Maven Central

An Android image processor library providing a variety of transformations for Fresco.

Are you using Picasso or Glide?

Picasso Transformations
Glide Transformations

Demo

Original Image

Processors

How do I use it?

Step 1

Gradle

repositories {
  mavenCentral()
}

dependencies {
  implementation 'jp.wasabeef:fresco-processors:2.2.1'
  // If you want to use the GPU Filters
  implementation 'jp.co.cyberagent.android:gpuimage:2.1.0'
}

Step 2

Set Fresco Postprocessor.

ImageRequest request =
    ImageRequestBuilder.newBuilderWithResourceId(R.drawable.demo)
      .setPostprocessor(processor)
      .build();

PipelineDraweeController controller =
    (PipelineDraweeController) Fresco.newDraweeControllerBuilder()
      .setImageRequest(request)
      .setOldController(holder.drawee.getController())
      .build();

Processors

Color

ColorFilterPostprocessor, GrayscalePostprocessor

Blur

BlurPostprocessor

Mask

MaskProcessors

GPU Filter (use GPUImage)

Will require add dependencies for GPUImage.

ToonFilterPostprocessor, SepiaFilterPostprocessor, ContrastFilterPostprocessor
InvertFilterPostprocessor, PixelationFilterPostprocessor, SketchFilterPostprocessor
SwirlFilterPostprocessor, BrightnessFilterPostprocessor, KuawaharaFilterPostprocessor VignetteFilterPostprocessor

Combine Processors

processor = new CombinePostProcessors.Builder()
                .add(new BlurPostprocessor(context))
                .add(new GrayscalePostprocessor())
                .build();

Developed By

Daichi Furiya (Wasabeef) - [email protected]

Follow me on Twitter

Contributions

Any contributions are welcome!

License

Copyright (C) 2020 Wasabeef

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].