GPU accelerated image processing for everyone
Convert image to 16-bit unsigned short pixel type.
Availability: Available in Fiji by activating the update sites clij, clij2 and clijx-assistant-extensions. This function is part of clijx-assistant-simpleitk_-0.6.0.1.jar.
Ext.CLIJx_convertToUnsignedShort(Image input, Image destination);
// init CLIJ and GPU import net.haesleinhuepf.clijx.CLIJx; import net.haesleinhuepf.clij.clearcl.ClearCLBuffer; CLIJx clijx = CLIJx.getInstance(); // get input parameters ClearCLBuffer input = clijx.push(inputImagePlus); destination = clijx.create(input);
// Execute operation on GPU clijx.convertToUnsignedShort(input, destination);
// show result destinationImagePlus = clijx.pull(destination); destinationImagePlus.show(); // cleanup memory on GPU clijx.release(input); clijx.release(destination);
% init CLIJ and GPU clijx = init_clatlabx(); % get input parameters input = clijx.pushMat(input_matrix); destination = clijx.create(input);
% Execute operation on GPU clijx.convertToUnsignedShort(input, destination);
% show result destination = clijx.pullMat(destination) % cleanup memory on GPU clijx.release(input); clijx.release(destination);