1.0.1 • Published 7 years ago

maxmin-filter v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

node-maxmin-filter

Max-Min filter of image implemented in JavaScript. Both in Node.js and browser.

Install

$ npm install maxmin-filter

Usage

I made it as an ndarray module. So, the simplest usage is with get-pixels and save-pixels as below.

const fs = require('fs')
const savePixels = require('save-pixels')
const getPixels = require('get-pixels')
const maxminFilter = require('maxmin-filter')

getPixels('src.png', (err, pixels) => {
  if (err) {
    throw err
  }
  let filtered = maxminFilter(pixels)
  savePixels(filtered, 'png').pipe(fs.createWriteStream('dist.png'))
})

API

maxminFilter(pixels[, options])

Returns a thresholded ndarray.