• Stars
    star
    296
  • Rank 135,826 (Top 3 %)
  • Language
    Clojure
  • Created about 11 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Image processing library for Clojure

imagez

Image processing library for Clojure

Contains various utility functions for handling colours and bitmap images.

Clojars Project

Build Status

Example

(use 'mikera.image.core)
(require '[mikera.image.filters :as filt])

;; load an image from a resource file
(def ant (load-image-resource "mikera/image/samples/Ant.png"))

;; show the image, after applying an "invert" filter
(show (filter-image ant (filt/invert)))

Inverted ant

Features

Features so far:

  • Creating new images
  • Scaling / zooming images
  • Loading images - from ordinary files, resource files, filesystem paths and streams
  • Getting and setting pixels in bulk using primitive arrays
  • Getting and setting individual pixels
  • Filtering images (blur, contrast, brightness etc.)
  • Various colour handling functions
  • Progressive encoding and controlling the quality of output images.

Imagez is a new library, so the API is being refined. Expect changes / additions on a regular basis.

Using Imagez

Simply add the dependency via Clojars: https://clojars.org/net.mikera/imagez

Imagez requires Clojure 1.4 and above.

More Examples

(use 'mikera.image.core)
(use 'mikera.image.colours)

;; create a new image
(def bi (new-image 32 32))

;; gets the pixels of the image, as an int array
(def pixels (get-pixels bi))

;; fill some random pixels with colours
(dotimes [i 1024]
  (aset pixels i (rand-colour)))

;; update the image with the newly changed pixel values
(set-pixels bi pixels)

;; view our new work of art
;; the zoom function will automatically interpolate the pixel values
(show bi :zoom 10.0 :title "Isn't it beautiful?")

For more examples including image filtering, see the demo namespace:

License

LGPL version 3.0.

More Repositories

1

core.matrix

core.matrix : Multi-dimensional array programming API for Clojure
Clojure
696
star
2

clisk

The Clojure Image Synthesis Kit
Clojure
278
star
3

vectorz

Fast and flexible numerical library for Java featuring N-dimensional arrays
Java
234
star
4

vectorz-clj

Fast matrix and vector maths library for Clojure - as a core.matrix implementation
Clojure
199
star
5

ironclad

Ironclad: Steam Legions - A steampunk strategy game in Clojure
Clojure
133
star
6

clojure-utils

A library of various small but handy clojure utility functions
Clojure
114
star
7

kiss

A statically typed, functional Lisp, building upon Clojure
Java
78
star
8

alchemy

A 7 day roguelike in Clojure
Clojure
75
star
9

swing-console

A Swing text console component
Java
68
star
10

tyrant

Tyrant Roguelike game in Java
Java
55
star
11

enlight

A Clojure raytracer
Java
44
star
12

timeline

Adding the time dimension to Clojure data
Clojure
39
star
13

magic

Experimental typed JVM Lisp inspired by Clojure
Java
33
star
14

cljunit

JUnit test integration for Clojure
Java
20
star
15

spectral

Experiments in Overtone with spectral analysis
Clojure
18
star
16

telegenic

Video creation and manipulation in Clojure
Clojure
18
star
17

task

A Clojure library for running and managing interactive tasks
Clojure
17
star
18

orculje

A Clojure toolkit for building roguelike games
Clojure
13
star
19

randomz

Library of fast random number generation functions
Java
12
star
20

mikera

Mike's general purpose Java library
Java
11
star
21

clojure-golf

Code golfing in Clojure - for fans of obfuscated code and code golf
Clojure
11
star
22

blockgame

A decentralised block game, 100% on-chain 3D universe
Java
11
star
23

core.matrix.complex

Complex numerical arrays in Clojure, as an extension to core.matrix
Clojure
9
star
24

motion-sensor

Clojure library to interface with TI CC254X accelerometers / motion sensors
8
star
25

steampunk-laf

Steampunk look and feel for Java Swing
Java
8
star
26

singa-viz

Animated visualisation of Singapore with Clojure and core.matrix
Clojure
5
star
27

mikera-clojure

Mike's library of Clojure functions
Clojure
4
star
28

trellis

A mildly opinionated Clojure framework for data-driven web applications
Clojure
3
star
29

glaze

A lightweight Clojure wrapper library for LWJGL
Java
3
star
30

edn-pojos

A lightweight library for building / unmarshalling Java POJO objects from edn format data
Java
3
star
31

vectorz-opencl

Experimental
Java
3
star
32

clojure-pom

A generic parent pom.xml for Clojure projects, based on mikera-pom
2
star
33

core.matrix.benchmark

Benchmark and testing suite for core.matrix implementations
Clojure
2
star
34

java-life

Flexible cellular automata system inspired by Conway's Game of Life
Java
2
star
35

vectorz-native

Fast native-optimised linear algebra library for Java
Java
2
star
36

euler-clojure

Project Euler solutions in Clojure
Clojure
2
star
37

enchant

Clojure integration for the Magic language
Clojure
2
star
38

clobber

Prototype-based object system for Clojure (experimental)
Clojure
2
star
39

mathz

Library of maths functions and utilities for Java
Java
2
star
40

streamz

RESTful server for realtime data streams
Clojure
2
star
41

mikera-gui

GUI components and utilities for Java
Java
2
star
42

mikera.net

Mike's personal website
HTML
1
star
43

clj-spss

SPSS .Sav file reader for Clojure
Java
1
star
44

mikera-pom

Parent pom.xml for mikera projects
1
star
45

datomic-test

Test project for Datomic database, with Clojure, Java and Maven
Clojure
1
star
46

cuboid

Java
1
star