CLIJ2

Logo

GPU accelerated image processing for everyone

CLIJ2 home

morphoLibJMarkerControlledWatershed

Apply MorpholibJs Marker-controlled Watershed to an image.

Connectedness: 4 (2D) / 6 (3D)

Categories: Binary, Filter, Labels

Availability: Available in Fiji by activating the update sites clij, clij2 and clijx-assistant-extensions. This function is part of clijx-assistant-morpholibj_-0.6.0.1.jar.

Usage in ImageJ macro

Ext.CLIJx_morphoLibJMarkerControlledWatershed(Image gradient_input, Image labelled_spots_image, Image binary_restriction_input, Image destination);

Usage in object oriented programming languages

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

// get input parameters
ClearCLBuffer gradient_input = clijx.push(gradient_inputImagePlus);
ClearCLBuffer labelled_spots_image = clijx.push(labelled_spots_imageImagePlus);
ClearCLBuffer binary_restriction_input = clijx.push(binary_restriction_inputImagePlus);
destination = clijx.create(gradient_input);
// Execute operation on GPU
clijx.morphoLibJMarkerControlledWatershed(gradient_input, labelled_spots_image, binary_restriction_input, destination);
// show result
destinationImagePlus = clijx.pull(destination);
destinationImagePlus.show();

// cleanup memory on GPU
clijx.release(gradient_input);
clijx.release(labelled_spots_image);
clijx.release(binary_restriction_input);
clijx.release(destination);
Matlab
% init CLIJ and GPU
clijx = init_clatlabx();

% get input parameters
gradient_input = clijx.pushMat(gradient_input_matrix);
labelled_spots_image = clijx.pushMat(labelled_spots_image_matrix);
binary_restriction_input = clijx.pushMat(binary_restriction_input_matrix);
destination = clijx.create(gradient_input);
% Execute operation on GPU
clijx.morphoLibJMarkerControlledWatershed(gradient_input, labelled_spots_image, binary_restriction_input, destination);
% show result
destination = clijx.pullMat(destination)

% cleanup memory on GPU
clijx.release(gradient_input);
clijx.release(labelled_spots_image);
clijx.release(binary_restriction_input);
clijx.release(destination);

Back to CLIJ2 reference Back to CLIJ2 documentation

Imprint