Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 792 Bytes

reference_projectMaximumZBounded.md

File metadata and controls

42 lines (31 loc) · 792 Bytes

projectMaximumZBounded

ImageImage

null

Usage in ImageJ macro

Ext.CLIJx_projectMaximumZBounded(null);

Usage in Java

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

// get input parameters
ClearCLBuffer arg1 = clij2.push(arg1ImagePlus);
ClearCLBuffer arg2 = clij2.push(arg2ImagePlus);
int arg3 = 10;
int arg4 = 20;
// Execute operation on GPU
clij2.projectMaximumZBounded(clij, arg1, arg2, arg3, arg4);
//show result

// cleanup memory on GPU
clij2.release(arg1);
clij2.release(arg2);

Back to CLIJ documentation

Imprint