Skip to content

nikos/dominant-color

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Handy Dominant Color Library for extracting the dominant color from images.

Authored by Niko Schmuck (https://github.com/nikos)

Inspired by an blog post of Jared Allen (http:https://chironexsoftware.com/blog/?p=60)

This repo is set up with google pages so maven artifacts can be included in other projects. See: http:https://blog.kaltepoth.de/posts/2010/09/06/github-maven-repositories.html

To from the command line try:

$ mvn package
$ mvn dependency:copy-dependencies
$ java -cp target/dominant-color-1.0.jar:target/dependency/* de.nava.color.BitmapDominantColor

You can then add the dependency in eclipse using ivy with the following two additions:

add this line to your ivy-settings.xml

<resolvers>
        <chain name="chain">
            ...
            <ibiblio name="de.nava" m2compatible="true" root="http:https://YOUR_GITHUB_NAME.github.io/dominant-color/repository" />
        </chain>
</resolvers>

and this line to your ivy.xml

<dependency org="de.nava" name="dominant-color" rev="1.0" />

To Do:

  1. refactor to accept a BufferedImage
  2. try using the pixel grabber so we don't need to do any byte shifting
  3. figure out how to use the unit tests :)

About

Finds the predominant color of a bitmap

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages