Skip to content

Latest commit

 

History

History
91 lines (62 loc) · 2.24 KB

reference_binaryWekaPixelClassifier.md

File metadata and controls

91 lines (62 loc) · 2.24 KB

binaryWekaPixelClassifier

Applies a pre-trained CLIJx-Weka model to a 2D image.

You can train your own model using menu Plugins > Segmentation > CLIJx Binary Weka Pixel ClassifierMake sure that the handed over feature list is the same used while training the model.

Categories: Binary, Segmentation

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

Usage in ImageJ macro

Ext.CLIJx_binaryWekaPixelClassifier(Image input, Image destination, String features, String modelfilename);

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 input = clijx.push(inputImagePlus); destination = clijx.create(input);

// Execute operation on GPU
clijx.binaryWekaPixelClassifier(input, destination, features, modelfilename);
// show result
destinationImagePlus = clijx.pull(destination);
destinationImagePlus.show();

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

% get input parameters input = clijx.pushMat(input_matrix); destination = clijx.create(input);

% Execute operation on GPU
clijx.binaryWekaPixelClassifier(input, destination, features, modelfilename);
% show result
destination = clijx.pullMat(destination)

% cleanup memory on GPU
clijx.release(input);
clijx.release(destination);

Back to CLIJ2 reference Back to CLIJ2 documentation

Imprint