-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathLoopWithPosition.java
47 lines (36 loc) · 1.03 KB
/
LoopWithPosition.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
/*
* 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.img.Img;
import net.imglib2.loops.LoopBuilder;
import net.imglib2.type.numeric.real.DoubleType;
import net.imglib2.util.Intervals;
/**
* How to use the LoopBuilder while accessing the position of a pixel
*
* @author Matthias Arzt
* @author Deborah Schmidt
*/
public class LoopWithPosition {
public static void run() {
ImageJ ij = new ImageJ();
Img<DoubleType> image = ij.op().create().img(new long[]{50, 60});
LoopBuilder.setImages( Intervals.positions( image ), image ).forEachPixel(
( position, pixel ) -> {
int x = position.getIntPosition( 0 );
int y = position.getIntPosition( 1 );
pixel.set( x * x + y * y );
}
);
ij.ui().show(image);
}
public static void main(String...args) {
run();
}
}