mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-13 20:00:05 +01:00
GPU Acceleration achieved! (#1038)
* add gpu.js 2.0.0-rc.7 * add gpuUtils * add gpuUtil convolve * add convolution to edgeDetect * bench it * bench change * newline * pipeline * revert edge-detect * gpu accelerate gaussian blur * edgeDetect use blur * tweak values * remove ndarray-gaussian-filter * audit * turn on previews * remove oldPix * fix travis * Travis fix * Try fixing travis * Fix * Retry * tweaks * convolution module on GPU * use babelify * trial * remove logs * Update .travis.yml * Update .travis.yml * bump version * bump to rc.9 * rc.10 * rc.11 * Update package.json * convolution fix * unit test gpuUtils * tests changed, fixed * new fix * more obvious parseFloat * remove old commented code
This commit is contained in:
committed by
Jeffrey Warren
parent
43a8d0f2c1
commit
b0096a13f4
@@ -5,6 +5,7 @@ module.exports = function Blur(options, UI) {
|
||||
|
||||
var defaults = require('./../../util/getDefaults.js')(require('./info.json'));
|
||||
options.blur = options.blur || defaults.blur;
|
||||
options.blur = parseFloat(options.blur);
|
||||
var output;
|
||||
|
||||
function draw(input, callback, progressObj) {
|
||||
|
||||
Reference in New Issue
Block a user