Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 685 Bytes

reference_convolveWithSobel.md

File metadata and controls

40 lines (29 loc) · 685 Bytes

convolveWithSobel

Image

null

Usage in ImageJ macro

Ext.CLIJx_convolveWithSobel(null);

Usage in Java

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

// get input parameters
ClearCLBuffer arg1 = clijx.push(arg1ImagePlus);
ClearCLBuffer arg2 = clijx.push(arg2ImagePlus);
// Execute operation on GPU
clijx.convolveWithSobel(clij, arg1, arg2);
//show result

// cleanup memory on GPU
arg1.close();
arg2.close();

Back to CLIJ documentation

Imprint