Package detail

gnuplot-imshow

Display an ndarray as an image using gnuplot

readme

gnuplot-imshow

Display an ndarray as an image using gnuplot

Installation

npm install gnuplot-imshow

Usage

const getPixels = require('get-pixels')
const imshow = require('gnuplot-imshow');

getPixels('baboon.jpg', (err, pixels) => {
  imshow(pixels, {title: 'baboon image'})
})

gnuplot-imshow-demo