Socket
Book a DemoInstallSign in
Socket

ndarray-imshow

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ndarray-imshow

Displays an ndarray as an image

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

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 ndarray

  • options is an object containing a set of optional arguments

    • min is the minimum bound on the intensity range for the image
    • max is the maximum bound on the intensity range for the image
    • colormap is a colormap, as defined by the colormap package
    • gray is a flag which if set converts rgb images to grayscale first

Credits

(c) 2014 Mikola Lysenko. MIT License

Keywords

ndarray

FAQs

Package last updated on 18 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts