CLIJ2

Logo

GPU accelerated image processing for everyone

CLIJ2 home

multiplyImageAndScalar

Multiplies all pixels value x in a given image X with a constant scalar s.

f(x, s) = x * s

Parameters

source : Image The input image to be multiplied with a constant. destination : Image The output image where results are written into. scalar : float The number with which every pixel will be multiplied with.

Category: Math

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

multiplyImageAndScalar often follows after

multiplyImageAndScalar is often followed by

Usage in ImageJ macro

Ext.CLIJ2_multiplyImageAndScalar(Image source, Image destination, Number scalar);

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);
float scalar = 1.0;
// Execute operation on GPU
clij2.multiplyImageAndScalar(source, destination, scalar);
// 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);
scalar = 1.0;
% Execute operation on GPU
clij2.multiplyImageAndScalar(source, destination, scalar);
% 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);
scalar = 1.0;
// Execute operation on GPU
clij2.multiplyImageAndScalar(source, destination, scalar);
// 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.multiply_image_and_scalar(source, destination, scalar)

Example notebooks

matrix_multiply
spots_pointlists_matrices_tables
multiply_matrices.ipynb
bead_segmentation.ipynb
Segmentation_3D.ipynb

Example scripts

bitdepthConversion.ijm
debugging_pixels.ijm
matrix_multiply.ijm
spots_pointlists_matrices_tables.ijm
tubeness.ijm
addImages.py

Back to CLIJ2 reference Back to CLIJ2 documentation

Imprint