Socket
Book a DemoInstallSign in
Socket

ndarray-resample

Package Overview
Dependencies
Maintainers
5
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ndarray-resample

Resample using sinc kernels

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
5
Created
Source

ndarray-resample

Resamples an ndarray by an arbitrary (rational) factor using a sinc kernel.

build status

Example

Here is a simple example showing how to downsample an image:

var baboon = require("luminance")(require("baboon-image"))
var x = require("zeros")([256,256])
require("ndarray-resample")(x, baboon)
require("save-pixels")(x, "png").pipe(process.stdout)

Output

Output

##Install Install using npm:

npm install ndarray-resample

API

require("ndarray-resample")(output, input[, clamp_lo, clamp_hi])

Resamples input by a factor of output.shape/input.shape, storing the result in output (this also means the factor can differ per dimension).

  • output gets the result of resampling
  • input is the array that gets resampled
  • clamp_lo is a threshold placed on the pixels
  • clamp_hi is an upper threhsold placed on the pixels

Note that the pixel at the "origin" in the output corresponds to the pixel at the origin in the input. Also, the boundary conditions are periodic (for now).

License

(c) 2013-2015 Mikola Lysenko, Jasper van de Gronde. MIT License

Keywords

scijs

FAQs

Package last updated on 09 Jan 2016

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