ndarray-imshow
v1.0.1
Published
Displays an ndarray as an image
Downloads
262
Readme
ndarray-imshow
Displays an ndarray as an image, either in the browser console or as a pop up when run from node. This works both in node.js and the browser via browserify.
Example
var lena = require("lena")
var imshow = require("ndarray-imshow")
imshow(lena)
Install
npm install ndarray-imshow
API
require("ndarray-imshow")(array[, options])
Displays an ndarray as an image. In node, this will open a window, while in the browser the image will be displayed in the debug console.
array
is an ndarrayoptions
is an object containing a set of optional argumentsmin
is the minimum bound on the intensity range for the imagemax
is the maximum bound on the intensity range for the imagecolormap
is a colormap, as defined by thecolormap
packagegray
is a flag which if set convertsrgb
images to grayscale first
Credits
(c) 2014 Mikola Lysenko. MIT License