0.3.1 • Published 6 years ago
gnuplot-imshow v0.3.1
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'})
})