GPU accelerated image processing for everyone
Sets all pixel values x of a given row in X to a constant value v.
Category: Math
Availability: Available in Fiji by activating the update sites clij and clij2. This function is part of clij2_-2.5.0.1.jar.
Ext.CLIJ2_setRow(Image source, Number row_index, Number value);
// 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); int row_index = 10; float value = 1.0;
// Execute operation on GPU clij2.setRow(source, row_index, value);
// show result // cleanup memory on GPU clij2.release(source);
% init CLIJ and GPU clij2 = init_clatlab(); % get input parameters source = clij2.pushMat(source_matrix); row_index = 10; value = 1.0;
% Execute operation on GPU clij2.setRow(source, row_index, value);
% show result % cleanup memory on GPU clij2.release(source);
// 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); row_index = 10; value = 1.0;
// Execute operation on GPU clij2.setRow(source, row_index, value);
// show result // cleanup memory on GPU clij2.release(source);
import pyclesperanto_prototype as cle cle.set_row(source, row_index, value)