Skip to content

Latest commit

 

History

History
147 lines (99 loc) · 4.61 KB

reference_resliceLeft.md

File metadata and controls

147 lines (99 loc) · 4.61 KB

resliceLeft

Flippes X, Y and Z axis of an image stack. This operation is similar to ImageJs 'Reslice [/]' method but offers less flexibility such as interpolation.

Category: Transformations

resliceLeft often follows after

resliceLeft is often followed by

Usage in ImageJ macro

Ext.CLIJ2_resliceLeft(Image source, Image 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 source = clij2.push(sourceImagePlus); destination = clij2.create(new long[]{source.getHeight(), source.getDepth(), source.getWidth()}, source.getNativeType());

// Execute operation on GPU
clij2.resliceLeft(source, destination);
// 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.getHeight(), source.getDepth(), source.getWidth()], source.getNativeType());

% Execute operation on GPU
clij2.resliceLeft(source, destination);
% 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.getHeight(), source.getDepth(), source.getWidth()], source.getNativeType());

// Execute operation on GPU
clij2.resliceLeft(source, destination);
// show result
destination_sequence = clij2.pullSequence(destination)
Icy.addSequence(destination_sequence);
// cleanup memory on GPU
clij2.release(source);
clij2.release(destination);

Example notebooks

drosophila_max_cylinder_projection

Example scripts

drosophila_max_cylinder_projection.ijm
reslicing.ijm
turn_stack.ijm
interactiveCylinderProjection.py
interactiveSphereProjection.py

Back to CLIJ2 reference Back to CLIJ2 documentation

Imprint