Coder Social home page Coder Social logo

alexei's Introduction

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:

Get it on Google Play

Setup

Gradle:

dependencies {
    compile 'com.github.thiagokimo:alexei-library:1.+'
}

Maven:

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

Usage

The basic API declaration is quite simple:

Alexei.with(context)
      .analize(image)
      .perform(calculus)
      .showMe(answer);

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

Example

Alexei.with(context)
      .analize(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)
        .analize(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) {}
        });

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

  • Figure-out a way to let Alexei perform synchronous AND/OR asynchronous calculus.
  • 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.

alexei's People

Contributors

thiagokimo avatar

Watchers

James Cloos avatar WinboZhou avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.