Skip to content

Files

Latest commit

1f3e836 · Oct 24, 2020

History

History
138 lines (97 loc) · 3.7 KB

reference_generateBinaryOverlapMatrix.md

File metadata and controls

138 lines (97 loc) · 3.7 KB

generateBinaryOverlapMatrix

Takes two labelmaps with n and m labels and generates a (n+1)*(m+1) matrix where all pixels are set to 0 exept those where labels overlap between the label maps.

For example, if labels 3 in labelmap1 and 4 in labelmap2 are touching then the pixel (3,4) in the matrix will be set to 1.

Categories: Graphs, Labels, Measurements, Binary

generateBinaryOverlapMatrix often follows after

generateBinaryOverlapMatrix is often followed by

Usage in ImageJ macro

Ext.CLIJ2_generateBinaryOverlapMatrix(Image label_map1, Image label_map2, Image touch_matrix_destination);

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 label_map1 = clij2.push(label_map1ImagePlus); ClearCLBuffer label_map2 = clij2.push(label_map2ImagePlus); touch_matrix_destination = clij2.create(label_map1);

// Execute operation on GPU
clij2.generateBinaryOverlapMatrix(label_map1, label_map2, touch_matrix_destination);
// show result
touch_matrix_destinationImagePlus = clij2.pull(touch_matrix_destination);
touch_matrix_destinationImagePlus.show();

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

% get input parameters label_map1 = clij2.pushMat(label_map1_matrix); label_map2 = clij2.pushMat(label_map2_matrix); touch_matrix_destination = clij2.create(label_map1);

% Execute operation on GPU
clij2.generateBinaryOverlapMatrix(label_map1, label_map2, touch_matrix_destination);
% show result
touch_matrix_destination = clij2.pullMat(touch_matrix_destination)

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

clij2 = CLICY.getInstance();

// get input parameters label_map1_sequence = getSequence(); label_map1 = clij2.pushSequence(label_map1_sequence); label_map2_sequence = getSequence(); label_map2 = clij2.pushSequence(label_map2_sequence); touch_matrix_destination = clij2.create(label_map1);

// Execute operation on GPU
clij2.generateBinaryOverlapMatrix(label_map1, label_map2, touch_matrix_destination);
// show result
touch_matrix_destination_sequence = clij2.pullSequence(touch_matrix_destination)
Icy.addSequence(touch_matrix_destination_sequence);
// cleanup memory on GPU
clij2.release(label_map1);
clij2.release(label_map2);
clij2.release(touch_matrix_destination);

Back to CLIJ2 reference Back to CLIJ2 documentation

Imprint