Skip to content

Latest commit

 

History

History
139 lines (95 loc) · 3.2 KB

reference_maximumZProjectionBounded.md

File metadata and controls

139 lines (95 loc) · 3.2 KB

maximumZProjectionBounded

Determines the maximum intensity projection of an image along Z within a given z range.

Category: Projections

Usage in ImageJ macro

Ext.CLIJ2_maximumZProjectionBounded(Image source, Image destination_max, Number min_z, Number max_z);

Usage in object oriented programming languages

Java
// init CLIJ and GPU
import net.haesleinhuepf.clij2.CLIJ2;
import net.haesleinhuepf.clij.clearcl.ClearCLBuffer;
CLIJ2 clij2 = CLIJ2.getInstance();

// get input parameters ClearCLBuffer source = clij2.push(sourceImagePlus); destination_max = clij2.create(source); int min_z = 10; int max_z = 20;

// Execute operation on GPU
clij2.maximumZProjectionBounded(source, destination_max, min_z, max_z);
// show result
destination_maxImagePlus = clij2.pull(destination_max);
destination_maxImagePlus.show();

// cleanup memory on GPU
clij2.release(source);
clij2.release(destination_max);
Matlab
% init CLIJ and GPU
clij2 = init_clatlab();

% get input parameters source = clij2.pushMat(source_matrix); destination_max = clij2.create(source); min_z = 10; max_z = 20;

% Execute operation on GPU
clij2.maximumZProjectionBounded(source, destination_max, min_z, max_z);
% show result
destination_max = clij2.pullMat(destination_max)

% cleanup memory on GPU
clij2.release(source);
clij2.release(destination_max);
Icy JavaScript
// init CLIJ and GPU
importClass(net.haesleinhuepf.clicy.CLICY);
importClass(Packages.icy.main.Icy);

clij2 = CLICY.getInstance();

// get input parameters source_sequence = getSequence(); source = clij2.pushSequence(source_sequence); destination_max = clij2.create(source); min_z = 10; max_z = 20;

// Execute operation on GPU
clij2.maximumZProjectionBounded(source, destination_max, min_z, max_z);
// show result
destination_max_sequence = clij2.pullSequence(destination_max)
Icy.addSequence(destination_max_sequence);
// cleanup memory on GPU
clij2.release(source);
clij2.release(destination_max);

Example notebooks

maximumProjection

Example scripts

maximumProjection.ijm

Back to CLIJ2 reference Back to CLIJ2 documentation

Imprint