Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Fast&Simple image processing in android

License

NotificationsYou must be signed in to change notification settings

awxkee/aire

Repository files navigation

APIKotlinCppHits

Fast & Simple image processing library for Android with 50+ available operations

Image processing speed increased bylibhwy

Usage

1. Add dependencies

Kotlin (kts)

repositories {  maven { setUrl("https://jitpack.io") }// Add jitpack}dependencies {  implementation("com.github.awxkee:aire:LATEST_VERSION")// Replace "LATEST_VERSION" with preferrend version tag}

Groovy

repositories {  maven { url'https://jitpack.io' }// Add jitpack}dependencies {  implementation'com.github.awxkee:aire:LATEST_VERSION'// Replace "LATEST_VERSION" with preferrend version tag}

2. AddAire call as shown below

Aire.gaussianBlur(    bitmap= input,//Addional parameters)

Available filters

Blur:

  • Gaussian Blur
  • Stack Blur
  • Poisson blur
  • Tent Blur
  • Median Blur
  • Bilateral Blur
  • Fast Bilateral Approximation
  • Anisotropic Diffusion
  • Fast Gaussian Approximation
  • Zoom Blur

Base operations:

  • Saturation
  • Contrast
  • Brightness
  • Sharp
  • Unsharp
  • Gamma
  • Crop
  • Rotate
  • Affine transform
  • Vibrance
  • Dilate
  • Erode
  • Exposure
  • Convolve 2D
  • Scaling
    • Bilinear
    • Nearest Neighbour
    • Bicubic
    • Mitchell
    • Lanczos3 ( Sinc )
    • Catmull
    • Hermite
    • Spline
    • BSpline
    • Hann

Effects:

  • Bokeh
  • Fractal Effect
  • Marble
  • Oil
  • Water effect
  • Glitch
  • Radial Tilt Shift
  • Horizontal Tilt Shift
  • Wind Stagger
  • Monochrome
  • Grain
  • CLAHE ( Contrast limited histogram equalization )
  • Histogram Equalization
  • Adaptive Histogram Equalization

Postprocessing:

  • Dehaze dark channel
  • Remove shadows

Compression:

  • Mozjpeg compression
  • PNG Quantize
  • Palette quantize

Tone Mapping:

  • Uchimura
  • Hable
  • Aces Filmic
  • Aces Hill
  • Hejl Burgess
  • Logarithmic
  • Mobius
  • Aldridge
  • Drago

Find this repository useful? ❤️

Support it by joiningstargazers for this repository. ⭐
Andfollow me for my next creations! 🤩

License

MIT LicenseCopyright (c) 2024 Radzivon BartoshykPermission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in allcopies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THESOFTWARE.

[8]ページ先頭

©2009-2025 Movatter.jp