CLIJ2

Logo

GPU accelerated image processing for everyone

CLIJ2 home

detectMaximaBox

Detects local maxima in a given square/cubic neighborhood.

Pixels in the resulting image are set to 1 if there is no other pixel in a given radius which has a higher intensity, and to 0 otherwise.

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

detectMaximaBox often follows after

detectMaximaBox is often followed by

Usage in ImageJ macro

Ext.CLIJ2_detectMaximaBox(Image source, Image destination, Number radius);

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 source = clij2.push(sourceImagePlus);
destination = clij2.create(source);
int radius = 10;
// Execute operation on GPU
clij2.detectMaximaBox(source, destination, radius);
// show result
destinationImagePlus = clij2.pull(destination);
destinationImagePlus.show();

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

% get input parameters
source = clij2.pushMat(source_matrix);
destination = clij2.create(source);
radius = 10;
% Execute operation on GPU
clij2.detectMaximaBox(source, destination, radius);
% show result
destination = clij2.pullMat(destination)

% cleanup memory on GPU
clij2.release(source);
clij2.release(destination);
Icy JavaScript
// 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);
destination = clij2.create(source);
radius = 10;
// Execute operation on GPU
clij2.detectMaximaBox(source, destination, radius);
// show result
destination_sequence = clij2.pullSequence(destination)
Icy.addSequence(destination_sequence);
// cleanup memory on GPU
clij2.release(source);
clij2.release(destination);
clEsperanto Python (experimental)
import pyclesperanto_prototype as cle

cle.detect_maxima_box(source, destination, radius)

Example notebooks

tribolium_morphometry
napari_dask.ipynb
bead_segmentation.ipynb
voronoi_otsu_labeling.ipynb
tribolium_morphometry.ipynb

Example scripts

meshTouchingNeighbors.ijm
mesh_closest_points.ijm
spot_distance_measurement.ijm
tribolium_morphometry.ijm
mesh_close_points.m
mesh_closest_points.py
tribolium.py

Back to CLIJ2 reference Back to CLIJ2 documentation

Imprint