GPU accelerated image processing for everyone
Determines the mean average intensity projection of an image along Z but only for pixels above a given threshold.
Category: Projections
Availability: Available in Fiji by activating the update sites clij and clij2. This function is part of clijx_-0.32.0.1.jar.
Ext.CLIJx_meanZProjectionAboveThreshold(Image source, Image destination, Number threshold);
// init CLIJ and GPU import net.haesleinhuepf.clijx.CLIJx; import net.haesleinhuepf.clij.clearcl.ClearCLBuffer; CLIJx clijx = CLIJx.getInstance(); // get input parameters ClearCLBuffer source = clijx.push(sourceImagePlus); destination = clijx.create(source); float threshold = 1.0;
// Execute operation on GPU clijx.meanZProjectionAboveThreshold(source, destination, threshold);
// show result destinationImagePlus = clijx.pull(destination); destinationImagePlus.show(); // cleanup memory on GPU clijx.release(source); clijx.release(destination);
% init CLIJ and GPU clijx = init_clatlabx(); % get input parameters source = clijx.pushMat(source_matrix); destination = clijx.create(source); threshold = 1.0;
% Execute operation on GPU clijx.meanZProjectionAboveThreshold(source, destination, threshold);
% show result destination = clijx.pullMat(destination) % cleanup memory on GPU clijx.release(source); clijx.release(destination);