KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
ndarray-gaussian-filter
★ 10
Open GitHub ↗
Gaussian blur for ndarrays
Download README (.md)
Explore Similar Repositories
golang-image
:
Adds support of CMYK jpeg files to Golang image library.
lifx-api
:
C++ API/SDK for Lifx bulbs
yii2-bs3activeform
:
A Bootstrap 3 enhanced ActiveForm for Yii 2
erlang
:
Ansible role for erlang
solarized
:
Style code snippets with Ethan Schoonover's Solarized theme (tweaked a bit).
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ndarray-gaussian-filter
?
Download (.md)
ndarray-gaussian-filter ======================= An FFT based Gaussian filter for ndarrays. [](http://travis-ci.org/scijs/ndarray-gaussian-filter) ## Example ```javascript var baboon = require("luminance")(require("baboon-image")) var savePixels = require("save-pixels") var blur = require("ndarray-gaussian-filter") savePixels(blur(baboon, 5), "png").pipe(process.stdout) ``` #### Output  ## Install Install using [npm](https://www.npmjs.com/): npm install ndarray-gaussian-filter ## API #### `require("ndarray-gaussian-filter")(array,radius[,wrap])` Filters an ndarray using a Gaussian filter. * `array` is an ndarray. * `sigma` is the radius of the Gaussian filter. Can be either a scalar or an array. * `wrap` is checks whether the filter is applied as a circular convolution or uses `0` boundary. Default is `false`. Can be set as an array to select boundary conditions independently for each axis. **Returns** `array` ## License (c) 2014 Mikola Lysenko. MIT License