1.0.1 • Published 10 years ago

sampling v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

Experimental package. Sampling functions for image and noise manipulation.

Currently all samples wrap around edges.

e.g.

var bilinear = require('sampling').bilinear;
var nearest = require('sampling').nearest;
	
//returns the bilinear float
var N = bilinear(data, width, height, x, y);

//nearest neighbour sample
var v = nearest(data, width, height, x, y);