Alexei


Source link: https://github.com/thiagokimo/Alexei

Alexei

A type-safe interface of image processing algorithms.

Screenshots

Demo

The sample application (the source is in the app folder) has been published on Google Play to facilitate the access:

Setup

Gradle:

dependencies {

  compile 'com.github.thiagokimo:alexei-library:1.4' 
}

Maven:

<dependency>
  <groupId>com.github.thiagokimo</groupId>
  <artifactId>alexei-library</artifactId>
  <version>1.4</version> </dependency>

Usage

The basic API declaration is quite simple:

Alexei.with(context)

 .analyze(image)

 .perform(calculus)

 .showMe(answer);

It's like saying: "Alexei, analyze this image, perform some calculus and give me the answer!"

Example

Alexei.with(context)

 .analyze(imageView)

 .perform(ImageProcessingThing.DOMINANT_COLOR)

 .showMe(new Answer<Color>(){

@Override

public void beforeExecution() {

  // anything you want to define before the calculation

}

 @Override

public void afterExecution(Color answer, long elapsedTime) {

 // your usual things after the calculation

}

 @Override

public void ifFails(Exception error) {

  // when shit happens, do your stuff here!

}

 
}
);

Internal Calculus

Alexei has some predefined image processing calculus. Check them out:

Custom Calculus

Create a custom calculus and implement a method called theCalculation, returning the object you expect to calculate. The Answer generic type must match your custom calculus generic type.

Alexei.with(context)

.analyze(image)

.perform(new Calculus<YourObject>() {

 @Override

 protected YourObject theCalculation(Bitmap image) {

// do your bizarre stuff here!

return new YourObject();

 
}

}
)

.showMe(new Answer<YourObject>() {

 @Override

 public void beforeExecution() {

}

  @Override

 public void afterExecution(YourObject answer, long elapsedTime) {

}

  @Override

 public void ifFails(Exception error) {

}

}
);
 

Custom Executor

It is also possible to let Alexei perform its calculus in a custom Executor.

Alexei
  .with(context)
  .analyze(image)
  .perform(calculus)
  .withExecutor(YOUR_CUSTOM_EXECUTOR_HERE)
  .showMe(answer);
 

Contribuiting

To suggest a new feature/bug-fix:

  1. Fork it
  2. Create your feature/bug-fix branch( git checkout -b my-new-feature-or-fix)
  3. Commit your changes ( git commit -am 'Add some feature/fix')
  4. Do your pull-request

To add a new predefined calculus:

  1. Fork it
  2. Create your feature/bug-fix branch( git checkout -b my-new-feature-or-fix)
  3. Create your calculus inside calculus package.
  4. Create a fragment in the demo app with the new calculations being applied in an image.
  5. Do your pull-request.

THE IMAGES OF THE DEMO APP MUST BE HOT BLOND GIRLS.

TODO

  • Feed Alexei with more predefined calculus.

Who the fu#% is Alexei?

Alexei was one of my favorite professors in college. He's well known for its studies in Image Processing and Computer Vision fields. It was almost impossible to not think in his class while I was writting this library :P

License

Copyright 2011, 2012 Thiago Rocha  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. 

Resources

OkHttp with UIThread and lifecycle safety callback.

A simple View that works like a switch, but with more customizations and the possibility to choose between two or three states and different designs

An annotation processor library which generates gson type adapters at compile time which also use basic JsonPath functionality.

An annotation based tool for saving and restoring instance states.

Medium android application displays content with text, image, video etc in post detail. Medium Textview allows to do the same.

A simple library for building beautiful login buttons.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes