CLIJ2

Logo

GPU accelerated image processing for everyone

CLIJ2 home

pullLabelsToROIManager

Pulls all labels in a label map as ROIs to the ROI manager.

Category: Labels

Availability: Available in Fiji by activating the update sites clij and clij2. This function is part of clij2_-2.5.0.1.jar.

Usage in ImageJ macro

Ext.CLIJ2_pullLabelsToROIManager(Image labelmap_input);

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 labelmap_input = clij2.push(labelmap_inputImagePlus);
// Execute operation on GPU
clij2.pullLabelsToROIManager(labelmap_input);
// show result

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

% get input parameters
labelmap_input = clij2.pushMat(labelmap_input_matrix);
% Execute operation on GPU
clij2.pullLabelsToROIManager(labelmap_input);
% show result

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

clij2 = CLICY.getInstance();

// get input parameters
labelmap_input_sequence = getSequence();
labelmap_input = clij2.pushSequence(labelmap_input_sequence);
// Execute operation on GPU
clij2.pullLabelsToROIManager(labelmap_input);
// show result

// cleanup memory on GPU
clij2.release(labelmap_input);

Example notebooks

working_with_rois

Example scripts

working_with_rois.ijm

Back to CLIJ2 reference Back to CLIJ2 documentation

Imprint