Giter Club home page Giter Club logo

imagej-node's Introduction

Node.js module for ImageJ

Do you want to embed ImageJ in your node.js application? Well then, today is your lucky day!

Installation

npm install imagej

Usage

config = {}
config.imagej_dir = '/path/to/Fiji.app'
config.headless = true // Unless you want the GUI.
console.log('==> Starting ImageJ')
var imagej = require('imagej')(config)
imagej.on('ready', function(ij) {
  ij.log().info('==> ImageJ is ready to go.')
  dataset = ij.io().open('/path/to/myImage.tif')
  filtered = ij.op().run('filter.gauss', dataset, [8, 10, 1])
  ij.scifio().datasetIO().save(filtered, '/path/to/outputImage.png')
  ij.context().dispose()
})

Examples

node examples/versions.js
node examples/gauss-filter.js

They assume you've set the IMAGEJ_DIR environment variable to an ImageJ2 installation. The easiest way to get ImageJ2 is to install Fiji.

Troubleshooting

  • If the ImageJ startup hangs on macOS, you may have been bit by the dreaded AWT main thread issue. Try setting config.headless = true in the config object you pass to the imagej initialization function.

    For further details, see this article as well as joeferner/node-java#21.

  • If npm install fails on macOS, you may have an issue with Python configuration. The java module used by imagej requires native compilation via node-gyp, which uses Python 2 (not 3!) internally. Try this:

    npm config set python /usr/bin/python
    export PATH=/usr/bin:$PATH
    

    And then npm install again.

imagej-node's People

Contributors

ctrueden avatar marcmortensen avatar

Watchers

 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.