-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathProcessMultipleImages.java
54 lines (42 loc) · 1.41 KB
/
ProcessMultipleImages.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* To the extent possible under law, the ImageJ developers have waived
* all copyright and related or neighboring rights to this tutorial code.
*
* See the Unlicense for details:
* https://unlicense.org/
*/
package howto.images.processing.loopbuilder;
import net.imagej.ImageJ;
import net.imglib2.RandomAccessibleInterval;
import net.imglib2.img.Img;
import net.imglib2.loops.LoopBuilder;
import net.imglib2.type.NativeType;
import net.imglib2.type.numeric.RealType;
import net.imglib2.type.numeric.real.DoubleType;
import java.io.IOException;
/**
* How to use the LoopBuilder for processing multiple images together
*
* @author Matthias Arzt
* @author Deborah Schmidt
*/
public class ProcessMultipleImages {
public static <T extends RealType<T> & NativeType<T>> void run() throws IOException {
ImageJ ij = new ImageJ();
// load example image to imageA
Img<T> imageA = (Img<T>) ij.io().open(Object.class.getResource("/blobs.png").getPath());
// set imageB to mirrored view of ImageA
RandomAccessibleInterval<T> imageB = ij.op().transform().invertAxisView(imageA, 0);
// create result image
Img<DoubleType> sum = ij.op().create().img(imageA, new DoubleType());
LoopBuilder.setImages(imageA, imageB, sum).forEachPixel(
(a, b, s) -> {
s.setReal(a.getRealDouble() + b.getRealDouble());
}
);
ij.ui().show(sum);
}
public static void main(String...args) throws IOException {
run();
}
}